From f05a2ce6dcebb5257541041217402b2f2e699f6f Mon Sep 17 00:00:00 2001 From: AirwavesMan Date: Wed, 16 Dec 2020 17:31:35 +0100 Subject: [PATCH] Add missing AnimationSources --- .../Buildables/LockableStorage.hpp | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/SQF/dayz_code/Configs/CfgVehicles/Buildables/LockableStorage.hpp b/SQF/dayz_code/Configs/CfgVehicles/Buildables/LockableStorage.hpp index 229db6122..2a32a7da8 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Buildables/LockableStorage.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Buildables/LockableStorage.hpp @@ -73,6 +73,19 @@ class TallSafe: Land_A_tent { transportMaxBackpacks = 30; lockedClass = "TallSafeLocked"; packedClass = "WeaponHolder_TallSafe"; + + class AnimationSources { + class Open_door { + source = "user"; + animPeriod = 4; + initPhase = 0; + }; + class Open_doorR { + source = "user"; + animPeriod = 1; + initPhase = 0; + }; + }; }; class TallSafeLocked: Land_A_tent { @@ -90,6 +103,19 @@ class TallSafeLocked: Land_A_tent { unlockedClass = "TallSafe"; requireplot = 0; nounderground = 0; + + class AnimationSources { + class Open_door { + source = "user"; + animPeriod = 4; + initPhase = 0; + }; + class Open_doorR { + source = "user"; + animPeriod = 1; + initPhase = 0; + }; + }; }; class LockboxStorage: Land_A_tent {