mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-14 11:31:51 +01:00
Fix CME from raids
Use the iterator to remove elements
This commit is contained in:
parent
9f6ea786bc
commit
55897098d6
21
Spigot-Server-Patches/Fix-CME-from-raids.patch
Normal file
21
Spigot-Server-Patches/Fix-CME-from-raids.patch
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Shane Freeder <theboyetronic@gmail.com>
|
||||||
|
Date: Wed, 26 Jun 2019 01:20:55 +0100
|
||||||
|
Subject: [PATCH] Fix CME from raids
|
||||||
|
|
||||||
|
Use the iterator to remove elements
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/Raid.java b/src/main/java/net/minecraft/server/Raid.java
|
||||||
|
index 6c1bbefd71..58c33f1000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/Raid.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/Raid.java
|
||||||
|
@@ -0,0 +0,0 @@ public class Raid {
|
||||||
|
BlockPosition blockposition = new BlockPosition(entityplayer);
|
||||||
|
|
||||||
|
if (this.k.c_(blockposition) != this) {
|
||||||
|
- set.remove(entityplayer);
|
||||||
|
+ iterator.remove(); // Paper - Use iterator
|
||||||
|
this.r.removePlayer(entityplayer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
--
|
Loading…
Reference in New Issue
Block a user