geforkt von Mirrors/FastAsyncWorldEdit
Fixed unsafe operation in ServerInterface.
Dieser Commit ist enthalten in:
Ursprung
93ac198d80
Commit
491f63b196
@ -135,7 +135,8 @@ public class ServerInterface {
|
||||
for (byte i = 0; i <= 26; i++) {
|
||||
Item item = chest.getItemFromSlot(i);
|
||||
if (item != null) {
|
||||
items.put(i, new Countable(new BaseItem((short)item.getItemId()), item.getAmount()));
|
||||
items.put(i, new Countable<BaseItem>(new BaseItem((short)item.getItemId()),
|
||||
item.getAmount()));
|
||||
}
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren