Fixed world events not playing

This commit is contained in:
Sollace 2020-05-29 18:10:10 +02:00
parent d4bdc6a8f0
commit 5c01f45bdb

View file

@ -83,6 +83,6 @@ public enum WorldEvent {
}
private void play(World world, BlockPos pos, int data) {
world.playGlobalEvent(getId(), pos, data);
world.playLevelEvent(getId(), pos, data);
}
}