Update Prototype
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2021-12-23 17:12:59 +01:00
Ursprung 31a47736bc
Commit 61d5456e21
2 geänderte Dateien mit 24 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -105,6 +105,10 @@ public class Prototype {
String schematicFileName = skinObject.getPlainValue("schematic");
String testblockSchematicFileName = skinObject.getPlainValueOrDefault("testblockSchematic", 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)));
});
} else {

Datei anzeigen

@ -161,6 +161,12 @@
name(X-Mas AirShip)
schematic(sections4/christmas/ASArena.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)
@ -202,6 +208,13 @@
name(X-Mas WarShip)
schematic(sections4/christmas/WSArena.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)
@ -247,6 +260,13 @@
name(X-Mas WarShip)
schematic(sections4/christmas/WSInnerArena.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)