From 4b1ecb4c3b2f8223fd761f82b84ff443acb11918 Mon Sep 17 00:00:00 2001 From: ebayShopper Date: Sun, 19 Feb 2017 19:17:50 -0500 Subject: [PATCH] Update vanilla repair action Vanilla commit: https://github.com/DayZMod/DayZ/commit/9bdce88f1ab8f329b4d8acf75008eb61c5921e6d --- SQF/dayz_code/Configs/CfgVehicles/CommonActions.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgVehicles/CommonActions.hpp b/SQF/dayz_code/Configs/CfgVehicles/CommonActions.hpp index 527c0ff37..873276cc2 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/CommonActions.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/CommonActions.hpp @@ -6,7 +6,8 @@ onlyForPlayer = 1;\ shortcut = "";\ condition = "(['Repair',this] call userActionConditions)";\ - statement = "this call player_repairVehicle;" + statement = "this call player_repairVehicle;";\ + hideOnUse = 0 #define ACTION_SALVAGE displayName = $STR_ACTIONS_SALVAGEVEH;\ displayNameDefault = $STR_ACTIONS_SALVAGEVEH;\ @@ -16,7 +17,8 @@ onlyForPlayer = 1;\ shortcut = "";\ condition = "(['Salvage',this] call userActionConditions)";\ - statement = "this call player_salvageVehicle;" + statement = "this call player_salvageVehicle;";\ + hideOnUse = 0 #define ACTION_PUSH displayName = $STR_ACTIONS_PUSH;\ displayNameDefault = $STR_ACTIONS_PUSH;\