Skip to content

Commit cf41231

Browse files
committed
More updates, yay!
1 parent 23ca615 commit cf41231

3 files changed

Lines changed: 12 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
- Fixed Amethyst Knots not recharging when cracked. (@enjarai)
22
- Fixed Executioner's Deviation. (@enjarai)
3+
- Fixed being able to activate a full stack of Torment Cores with one spawner. (@enjarai)
4+
- Changed Cracked Quartz Knots to return daytime instead of gametime, effectively accounting for players sleeping. (@enjarai)
5+
- Made Constructs always restart when shift-right-clicked. (@enjarai)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ deps.yarn=1.21+build.2
99
loader_version=0.15.11
1010

1111
# Mod Properties
12-
mod_version=2.0.0-beta.29
12+
mod_version=2.0.0-beta.30
1313
maven_group=dev.enjarai
1414
archives_base_name=trickster
1515

src/main/java/dev/enjarai/trickster/block/SpellConstructBlockEntity.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,14 @@ public void refreshExecutor() {
155155
var fragment = getComponents().get(ModComponents.FRAGMENT).value();
156156

157157
if (fragment instanceof SpellPart spell) {
158-
if (
159-
executor == null
160-
|| !spell.equals(executor.spell())
161-
|| executor instanceof ErroredSpellExecutor
162-
) {
163-
executor = new DefaultSpellExecutor(spell, List.of());
164-
markDirtyAndUpdateClients();
165-
}
158+
// if (
159+
// executor == null
160+
// || !spell.equals(executor.spell())
161+
// || executor instanceof ErroredSpellExecutor
162+
// ) {
163+
executor = new DefaultSpellExecutor(spell, List.of());
164+
markDirtyAndUpdateClients();
165+
// }
166166
}
167167
}
168168
}

0 commit comments

Comments
 (0)