13
0

Fix GhostJumpAndRun
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2023-04-08 15:16:48 +02:00
Ursprung b466d7fbff
Commit 745c69bd6a

Datei anzeigen

@ -132,7 +132,9 @@ public class GhostJumpAndRun implements Listener {
entityPlayer = null;
return;
}
entityPlayer.move(iterator.next().toLocation(player.getWorld()));
if (entityPlayer != null) {
entityPlayer.move(iterator.next().toLocation(player.getWorld()));
}
}
};
replayRunnable.runTaskTimer(LobbySystem.getPlugin(), 1, 2);