From d80e0aeef47a1846d5efd5307799bdf960521ba3 Mon Sep 17 00:00:00 2001 From: Sir-Skurpsalot <87043120+Sir-Skurpsalot@users.noreply.github.com> Date: Fri, 12 Dec 2025 20:11:18 -0700 Subject: [PATCH] Update ExampleModule.tscript removed execution of keybinds, only done in core/clientServer/scripts/client/client.tscript now. --- .../BaseGame/game/data/ExampleModule/ExampleModule.tscript | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Templates/BaseGame/game/data/ExampleModule/ExampleModule.tscript b/Templates/BaseGame/game/data/ExampleModule/ExampleModule.tscript index 033b2155a..57518e0a1 100644 --- a/Templates/BaseGame/game/data/ExampleModule/ExampleModule.tscript +++ b/Templates/BaseGame/game/data/ExampleModule/ExampleModule.tscript @@ -29,11 +29,7 @@ function ExampleModule::initClient(%this) //client scripts exec("./scripts/client/defaultkeybinds"); - - %prefPath = getPrefpath(); - if(isScriptFile(%prefPath @ "/keybinds")) - exec(%prefPath @ "/keybinds"); - + %this.queueExec("./scripts/shared/ExampleGameMode"); }