Add filter cheats back to map display

I removed this in 416fdbc, but upon testing again it appears I was wrong
and this is still needed. #1915
This commit is contained in:
ebayShopper
2017-03-22 15:49:05 -04:00
parent ad7a12771a
commit 665ecd9146
2 changed files with 3 additions and 0 deletions

View File

@@ -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.

View File

@@ -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;};";
};