From 3f3fdc73f05f2c4d14aca1e5b99cdc30279634ed Mon Sep 17 00:00:00 2001 From: RubenatorX Date: Mon, 7 Jun 2021 11:36:44 -0600 Subject: [PATCH] Cap framerate on load if not in a cutscene I'm hella tired of telling ppl how to fix it when they load up the game and framerate is uncapped. --- addons/FastCS/FastCS.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/FastCS/FastCS.lua b/addons/FastCS/FastCS.lua index e3a4e08517..899937255a 100644 --- a/addons/FastCS/FastCS.lua +++ b/addons/FastCS/FastCS.lua @@ -73,6 +73,8 @@ windower.register_event('load',function() if player and player.status == 4 then windower.send_command("config FrameRateDivisor 0") + else + disable() end end)