geforkt von Mirrors/FastAsyncWorldEdit
Fixed error caused by not specify a mob spawner type when using mob spawner blocks.
Dieser Commit ist enthalten in:
Ursprung
8c2169f21c
Commit
25ac336c54
@ -260,7 +260,7 @@ public class WorldEditListener extends PluginListener {
|
||||
text[3] = args0.length > 4 ? args0[4] : "";
|
||||
return new SignBlock(blockType.getID(), data, text);
|
||||
} else if (blockType == BlockType.MOB_SPAWNER) {
|
||||
if (args0.length > 0) {
|
||||
if (args0.length > 1) {
|
||||
if (!ServerInterface.isValidMobType(args0[1])) {
|
||||
throw new InvalidItemException(arg, "Unknown mob type '" + args0[1] + "'");
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren