mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-29 16:31:51 +00:00
Fix missing player tick function
This commit is contained in:
parent
d3925e8c6e
commit
9d75c25085
@ -189,6 +189,10 @@ 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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user