Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 05:20:05 +01:00
Fixed an exploit allowing item duplication upon death
Dieser Commit ist enthalten in:
Ursprung
e0d8c1d7ac
Commit
7de9091036
@ -94,12 +94,14 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
||||
for (int i = 0; i < inventory.a.length; ++i) {
|
||||
if (inventory.a[i] != null) {
|
||||
loot.add(new CraftItemStack(inventory.a[i]));
|
||||
inventory.a[i] = null;
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; i < inventory.b.length; ++i) {
|
||||
if (inventory.b[i] != null) {
|
||||
loot.add(new CraftItemStack(inventory.b[i]));
|
||||
inventory.a[i] = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren