Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
Ursprung
31a47736bc
Commit
61d5456e21
@ -105,6 +105,10 @@ public class Prototype {
|
|||||||
String schematicFileName = skinObject.getPlainValue("schematic");
|
String schematicFileName = skinObject.getPlainValue("schematic");
|
||||||
String testblockSchematicFileName = skinObject.getPlainValueOrDefault("testblockSchematic", null);
|
String testblockSchematicFileName = skinObject.getPlainValueOrDefault("testblockSchematic", null);
|
||||||
String buildSchematicFileName = skinObject.getPlainValueOrDefault("buildSchematic", null);
|
String buildSchematicFileName = skinObject.getPlainValueOrDefault("buildSchematic", null);
|
||||||
|
boolean disabled = skinObject.getPlainValueOrDefault("disabled", false);
|
||||||
|
if (disabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
skinMap.put(skinName, new Skin(skinName, skinCreator, new File(schematicFileName), testblockSchematicFileName == null ? null : new File(testblockSchematicFileName), buildSchematicFileName == null ? null : new File(buildSchematicFileName)));
|
skinMap.put(skinName, new Skin(skinName, skinCreator, new File(schematicFileName), testblockSchematicFileName == null ? null : new File(testblockSchematicFileName), buildSchematicFileName == null ? null : new File(buildSchematicFileName)));
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
@ -161,6 +161,12 @@
|
|||||||
name(X-Mas AirShip)
|
name(X-Mas AirShip)
|
||||||
schematic(sections4/christmas/ASArena.schem)
|
schematic(sections4/christmas/ASArena.schem)
|
||||||
testblockSchematic(sections4/christmas/ASTestblock.schem)
|
testblockSchematic(sections4/christmas/ASTestblock.schem)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name(Prestige AirShip)
|
||||||
|
creator(TheBreadBeard)
|
||||||
|
schematic(sections4/custom/Prestige AirShip/ASArena.schem)
|
||||||
|
testblockSchematic(sections4/custom/Prestige AirShip/ASTestblock.schem)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
sizeX(121)
|
sizeX(121)
|
||||||
@ -202,6 +208,13 @@
|
|||||||
name(X-Mas WarShip)
|
name(X-Mas WarShip)
|
||||||
schematic(sections4/christmas/WSArena.schem)
|
schematic(sections4/christmas/WSArena.schem)
|
||||||
testblockSchematic(sections4/christmas/WSTestblock.schem)
|
testblockSchematic(sections4/christmas/WSTestblock.schem)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name(Prestige WarShip)
|
||||||
|
creator(TheBreadBeard)
|
||||||
|
schematic(sections4/custom/Prestige WarShip/WSArena.schem)
|
||||||
|
testblockSchematic(sections4/custom/Prestige WarShip/WSTestblock.schem)
|
||||||
|
disabled(true)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
sizeX(214)
|
sizeX(214)
|
||||||
@ -247,6 +260,13 @@
|
|||||||
name(X-Mas WarShip)
|
name(X-Mas WarShip)
|
||||||
schematic(sections4/christmas/WSInnerArena.schem)
|
schematic(sections4/christmas/WSInnerArena.schem)
|
||||||
testblockSchematic(sections4/christmas/WSTestblock.schem)
|
testblockSchematic(sections4/christmas/WSTestblock.schem)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name(Prestige WarShip)
|
||||||
|
creator(TheBreadBeard)
|
||||||
|
schematic(sections4/custom/Prestige WarShip/WSInnerArena.schem)
|
||||||
|
testblockSchematic(sections4/custom/Prestige WarShip/WSTestblock.schem)
|
||||||
|
disabled(true)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
sizeX(214)
|
sizeX(214)
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren