refactor: use final
This commit is contained in:
parent
e757ddb64e
commit
48cefd4b01
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ public class GameTimeManager {
|
|||
}
|
||||
}
|
||||
if (isPlayTimeOver()) {
|
||||
for (Player p : Bukkit.getOnlinePlayers()) {
|
||||
for (final Player p : Bukkit.getOnlinePlayers()) {
|
||||
p.kickPlayer("Spielzeit abgelaufen");
|
||||
}
|
||||
this.cancel();
|
||||
|
|
Loading…
Reference in a new issue