Skip to content

Commit 1077086

Browse files
committed
Fix missing heightOffset parameter in ActionPerformerBehaviour (joedobo)
1 parent bea9a20 commit 1077086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/modlauncher/src/main/java/org/gotti/wurmunlimited/modsupport/actions/ActionPerformerBehaviour.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public boolean action(Action action, Creature performer, int tilex, int tiley, b
165165

166166
@Override
167167
public boolean action(Action action, Creature performer, Item source, int tilex, int tiley, boolean onSurface, int heightOffset, int tile, int dir, short num, float counter) {
168-
return actionPerformer.action(action, performer, source, tilex, tiley, onSurface, tile, dir, num, counter);
168+
return actionPerformer.action(action, performer, source, tilex, tiley, onSurface, heightOffset, tile, dir, num, counter);
169169
}
170170

171171
@Override

0 commit comments

Comments
 (0)