Moved decl.c globals into instance globals.
This commit is contained in:
@@ -832,7 +832,7 @@ boolean verbose;
|
||||
/* if hero is wielding this towel, don't give "you begin bashing
|
||||
with your wet towel" message on next attack with it */
|
||||
if (obj == uwep)
|
||||
unweapon = !is_wet_towel(obj);
|
||||
g.unweapon = !is_wet_towel(obj);
|
||||
}
|
||||
|
||||
/* decrease a towel's wetness */
|
||||
@@ -861,7 +861,7 @@ boolean verbose;
|
||||
/* if hero is wielding this towel and it is now dry, give "you begin
|
||||
bashing with your towel" message on next attack with it */
|
||||
if (obj == uwep)
|
||||
unweapon = !is_wet_towel(obj);
|
||||
g.unweapon = !is_wet_towel(obj);
|
||||
}
|
||||
|
||||
/* copy the skill level name into the given buffer */
|
||||
|
||||
Reference in New Issue
Block a user