Skip to content

Commit

Permalink
It has been foretold
Browse files Browse the repository at this point in the history
  • Loading branch information
StellarWitch7 committed Nov 29, 2024
1 parent 43cd91d commit 8d9bb57
Show file tree
Hide file tree
Showing 16 changed files with 11 additions and 228 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
- Updated to Trickster 2.0.0-beta.1
- Updated to Trickster 2.0.0-beta.7
- Removed cells as Trickster will have inter-spell communication in a future update of the core mod
- Updated to libstellar 2.0.1 due to badly declared dependencies
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ A simple add-on for [Trickster](https://github.com/enjarai/trickster) that imple
In addition to Trickster, this mod depends on [libstellar](https://github.com/StellarWitch7/libstellar), my personal Kotlin library for making Fabric mods.

# Other additions
Versions 2.0.0 and up include more than just RAM, providing other fun things such as world-space fragment storage and a handful of tricks for dealing with the unmentioned *pattern* fragments.
Versions 2.0.0 and up include more than just RAM, providing a handful of tricks for dealing with pattern fragments.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ publishMods {
displayName = "Random Access Mind ${property('mod_version')} for Trickster ${property('deps.trickster')}"
version = project.version
changelog = getRootProject().file("CHANGELOG.md").text
type = ALPHA
type = STABLE
modLoaders.add("fabric")

def min = property('publish_target_min')
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx1G
org.gradle.parallel=true

# Mod Properties
mod_version=2.0.0-alpha.4
mod_version=2.0.0
maven_group=stellarwitch7
archives_base_name=ram

Expand All @@ -23,6 +23,6 @@ deps.scala=3.1.3

# Dependencies
deps.fabric-api=0.100.1+1.21
deps.libstellar=2.0.0
deps.trickster=2.0.0-beta.1
deps.libstellar=2.0.1
deps.trickster=2.0.0-beta.7
deps.modmenu=11.0.1
50 changes: 0 additions & 50 deletions src/main/java/stellarwitch7/ram/spell/fragment/CellFragment.java

This file was deleted.

13 changes: 3 additions & 10 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,11 @@
"value": "stellarwitch7.ram.cca.block.ModBlockComponents",
"adapter": "kotori_scala"
}
],
"cardinal-components-world": [
{
"value": "stellarwitch7.ram.cca.world.ModWorldComponents",
"adapter": "kotori_scala"
}
]
},
"custom": {
"cardinal-components": [
"ram:ram",
"ram:cells"
"ram:ram"
]
},
"mixins": [
Expand All @@ -66,8 +59,8 @@
"java": ">=21",
"fabric-api": "*",
"kotori_scala": "*",
"libstellar": ">=1.1.8",
"trickster": ">=2.0.0-beta.1"
"libstellar": ">=2.0.1",
"trickster": ">=2.0.0-beta.7"
},
"suggests": {
}
Expand Down
1 change: 0 additions & 1 deletion src/main/scala/stellarwitch7/ram/RandomAccessMind.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ object RandomAccessMind extends ModInitializer {
LOGGER.info("SIGSEGV")

ModTricks.register()
ModFragmentTypes.register()
}
}
67 changes: 0 additions & 67 deletions src/main/scala/stellarwitch7/ram/cca/world/CellsComponent.scala

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions src/main/scala/stellarwitch7/ram/spell/trick/ModTricks.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,4 @@ object ModTricks extends Registrar[Trick] {
val PATTERN_FROM_INT = register("pattern_from_int", PatternFromIntTrick())
val PATTERN_FROM_INT_LIST = register("pattern_from_int_list", PatternFromIntListTrick())
val GLYPH_FROM_SPELL_PART = register("glyph_from_spell_part", GlyphFromSpellPartTrick())

// cell
val ACQUIRE_CELL = register("acquire_cell", AcquireCellTrick())
val READ_CELL = register("read_cell", ReadCellTrick())
val WRITE_CELL = register("write_cell", WriteCellTrick())
}

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 8d9bb57

Please sign in to comment.