diff --git a/SQF/dayz_code/system/scheduler/sched_oneachframe.sqf b/SQF/dayz_code/system/scheduler/sched_oneachframe.sqf index 3f6335bbd..e3bb8641d 100644 --- a/SQF/dayz_code/system/scheduler/sched_oneachframe.sqf +++ b/SQF/dayz_code/system/scheduler/sched_oneachframe.sqf @@ -25,11 +25,13 @@ sched_onEachFrame = { }; if (sched_ef_lowFPSctr >= 100) then { sched_ef_lowFPSctr = 2; - hintSilent localize "str_player_lowPFS"; - diag_log format [ "h1nt: LOW FPS (%1)", diag_fpsmin ]; + if (!visibleMap) then { + hintSilent localize "str_player_lowPFS"; + diag_log format [ "h1nt: LOW FPS (%1)", diag_fpsmin ]; + }; }; if (!isNil "dayz_groupIcons") then {call dayz_groupIcons;}; _ret -}; \ No newline at end of file +};