Fixed typo in WiredEffectTriggerStacks.java

This commit is contained in:
Harmonic 2022-05-05 05:29:23 -07:00
parent f6853b240d
commit 27af901b11

View File

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