Commit 9d75c250 authored by Melledy's avatar Melledy
Browse files

Fix missing player tick function

parent d3925e8c
...@@ -188,8 +188,12 @@ public final class GameServer extends KcpServer { ...@@ -188,8 +188,12 @@ public final class GameServer extends KcpServer {
world.onTick(); world.onTick();
} }
for (Player player : this.getPlayers().values()) {
player.onTick();
}
ServerTickEvent event = new ServerTickEvent(); event.call(); ServerTickEvent event = new ServerTickEvent(); event.call();
} }
public void registerWorld(World world) { public void registerWorld(World world) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment