File tree Expand file tree Collapse file tree
src/main/java/dev/enjarai/trickster/block Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ deps.yarn=1.21+build.2
99loader_version =0.15.11
1010
1111# Mod Properties
12- mod_version =2.0.0-beta.29
12+ mod_version =2.0.0-beta.30
1313maven_group =dev.enjarai
1414archives_base_name =trickster
1515
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments