Fixes a few places where if statements wouldn't work due to syntax errors.

This commit is contained in:
Erthilo
2012-06-29 02:31:46 +01:00
parent a6607a0275
commit f5b221bb63
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ MEDICAL
if(!((affecting.name == "l_arm") || (affecting.name == "r_arm") || (affecting.name == "l_leg") || (affecting.name == "r_leg")))
user << "\red You can't apply a splint there!"
return
if(!affecting.status & BROKEN)
if(!(affecting.status & BROKEN))
user << "\red [M]'s [limb] isn't broken!"
return
if(affecting.status & SPLINTED)