fixed some simple syntax errors

I forgot to compile the mod to test before I uploaded it to the github oof
This commit is contained in:
JezuzLizard 2020-04-10 01:07:03 -07:00 committed by GitHub
parent 7b6cdcbc37
commit c1abbf3b5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,7 +207,7 @@ checks()
level.start_weapon = "m1911_zm"; level.start_weapon = "m1911_zm";
if ( level.script == "zm_tomb" ) if ( level.script == "zm_tomb" )
{ {
level.start_weapon == "c96_zm"; level.start_weapon = "c96_zm";
} }
} }
if ( level.default_laststandpistol == "" ) if ( level.default_laststandpistol == "" )
@ -215,7 +215,7 @@ checks()
level.default_laststandpistol = "m1911_zm"; level.default_laststandpistol = "m1911_zm";
if ( level.script == "zm_tomb" ) if ( level.script == "zm_tomb" )
{ {
level.default_laststandpistol == "c96_zm"; level.default_laststandpistol = "c96_zm";
} }
} }
if ( level.default_solo_laststandpistol == "" ) if ( level.default_solo_laststandpistol == "" )
@ -223,7 +223,7 @@ checks()
level.default_solo_laststandpistol = "m1911_upgraded_zm"; level.default_solo_laststandpistol = "m1911_upgraded_zm";
if ( level.script == "zm_tomb" ) if ( level.script == "zm_tomb" )
{ {
level.default_solo_laststandpistol == "c96_upgraded_zm"; level.default_solo_laststandpistol = "c96_upgraded_zm";
} }
} }