Merge branch 'fix-wired-typo' into 'dev'

Fixed typo in WiredEffectTriggerStacks.java

See merge request morningstar/Arcturus-Community!104
This commit is contained in:
ArpyAge 2025-01-24 20:14:40 +00:00
commit 8cdd3d9f85

View File

@ -147,7 +147,7 @@ public class WiredEffectTriggerStacks extends InteractionWiredEffect {
Object[] newStuff = new Object[stuff.length + 1]; Object[] newStuff = new Object[stuff.length + 1];
System.arraycopy(stuff, 0, newStuff, 0, stuff.length); System.arraycopy(stuff, 0, newStuff, 0, stuff.length);
newStuff[newStuff.length - 1] = this; newStuff[newStuff.length - 1] = this;
WiredHandler.executeEffectsAtTiles(usedTiles, roomUnit, room, stuff); WiredHandler.executeEffectsAtTiles(usedTiles, roomUnit, room, newStuff);
return true; return true;
} }