diff --git a/CHANGE LOG 1.0.6.2.txt b/CHANGE LOG 1.0.6.2.txt index 8d08312b9..e34b28307 100644 --- a/CHANGE LOG 1.0.6.2.txt +++ b/CHANGE LOG 1.0.6.2.txt @@ -13,6 +13,7 @@ [FIXED] The unconscious wake up animation can no longer be skipped by using a bandage or other right click actions. [FIXED] Sharpening a knife will no longer delete one if the player already had a fully sharpened knife on their toolbelt (duplicate weapon). [FIXED] Swimming in ground when relogging on some maps again. #1913 @Cherdenko +[FIXED] Arma cheats enterable on map display and create marker text box. #1915 @BigEgg17 [NOTE] Fixes below are included in the mission file and server pbo as part of server package 1.0.6.1A (March 10th 2017) [FIXED] Fixed food and drink going down 10x faster from melee and other "working" actions. diff --git a/SQF/dayz_code/Configs/RscDisplay/RscMap.hpp b/SQF/dayz_code/Configs/RscDisplay/RscMap.hpp index c2e917dc8..5c27c5449 100644 --- a/SQF/dayz_code/Configs/RscDisplay/RscMap.hpp +++ b/SQF/dayz_code/Configs/RscDisplay/RscMap.hpp @@ -1,5 +1,6 @@ class RscDisplayMainMap { + onKeyDown = FILTER_CHEATS; class controls { delete CA_MainBackground; @@ -45,5 +46,6 @@ class RscDisplayMainMap class RscDisplayInsertMarker { idd = 54; + onKeyDown = FILTER_CHEATS; onUnload = "if (!isNil 'player_markMap') then {(_this select 0) call player_markMap;};"; }; \ No newline at end of file