mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-14 14:45:40 +01:00
20 lines
778 B
Diff
20 lines
778 B
Diff
--- a/net/minecraft/server/Raid.java
|
|
+++ b/net/minecraft/server/Raid.java
|
|
@@ -137,14 +137,14 @@
|
|
private void y() {
|
|
Collection<EntityPlayer> collection = this.r.getPlayers();
|
|
Set<EntityPlayer> set = Sets.newHashSet(collection);
|
|
- Iterator iterator = collection.iterator();
|
|
+ Iterator iterator = set.iterator(); // CraftBukkit
|
|
|
|
while (iterator.hasNext()) {
|
|
EntityPlayer entityplayer = (EntityPlayer) iterator.next();
|
|
BlockPosition blockposition = new BlockPosition(entityplayer);
|
|
|
|
if (this.k.c_(blockposition) != this) {
|
|
- set.remove(entityplayer);
|
|
+ iterator.remove(); // CraftBukkit
|
|
this.r.removePlayer(entityplayer);
|
|
}
|
|
}
|