From c1abbf3b5b9794a5c74fa8e818dec3f3b759ea09 Mon Sep 17 00:00:00 2001 From: JezuzLizard Date: Fri, 10 Apr 2020 01:07:03 -0700 Subject: [PATCH] fixed some simple syntax errors I forgot to compile the mod to test before I uploaded it to the github oof --- Configuration Mod/_clientids.gsc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Configuration Mod/_clientids.gsc b/Configuration Mod/_clientids.gsc index 0aa481e..c04834d 100644 --- a/Configuration Mod/_clientids.gsc +++ b/Configuration Mod/_clientids.gsc @@ -207,7 +207,7 @@ checks() level.start_weapon = "m1911_zm"; if ( level.script == "zm_tomb" ) { - level.start_weapon == "c96_zm"; + level.start_weapon = "c96_zm"; } } if ( level.default_laststandpistol == "" ) @@ -215,7 +215,7 @@ checks() level.default_laststandpistol = "m1911_zm"; if ( level.script == "zm_tomb" ) { - level.default_laststandpistol == "c96_zm"; + level.default_laststandpistol = "c96_zm"; } } if ( level.default_solo_laststandpistol == "" ) @@ -223,7 +223,7 @@ checks() level.default_solo_laststandpistol = "m1911_upgraded_zm"; if ( level.script == "zm_tomb" ) { - level.default_solo_laststandpistol == "c96_upgraded_zm"; + level.default_solo_laststandpistol = "c96_upgraded_zm"; } }