Swap vanilla ItemPadLock for Epoch ItemComboLock

This greatly simplifies things over having two separate combo lock
classes.
This commit is contained in:
ebaydayz
2016-08-17 13:27:08 -04:00
parent d62a69b9f5
commit a345b69a77
9 changed files with 33 additions and 12 deletions

View File

@@ -782,4 +782,21 @@ class CinderWallDoorSmall_DZ: CinderWallDoor_DZ_Base {
statement="this animate [""Open_door"", 0]";
};
};
};
/*
Vanilla DayZ buildables are defined in \dayz_buildings\configs\
Only included here to overwrite vanilla ItemPadlock with Epoch ItemComboLock
*/
class WoodenGate_Base;
class WoodenGate_1: WoodenGate_Base
{
class Upgrade { //to next stage
requiredTools[] = {"ItemEtool","ItemToolbox"};
requiredParts[] = {"ItemLog","ItemComboLock"};
create = "WoodenGate_2";
};
class Disassembly {
requiredTools[] = {"ItemToolbox"};
};
};