Moved decl.c globals into instance globals.

This commit is contained in:
Bart House
2018-12-22 18:44:22 -08:00
parent 6c0df43a17
commit 74edf42f1c
83 changed files with 818 additions and 824 deletions

View File

@@ -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 */