- a crusader aura robustness fix (shouldn't ever happen, but

apparantly does)
This commit is contained in:
Adam Olsen 2001-10-05 22:58:43 +00:00
parent d2f77c5cca
commit 01a28bdf9d
1 changed files with 4 additions and 0 deletions

View File

@ -101,12 +101,16 @@ void(float aur) AddAura =
strung = "Aura of Resistance.\n";
else if (targ.aura == AURA_HASTE)
strung = "Aura of Haste.\n";
else
strung = "Aura of Bugginess.\n";
if (oldaur == AURA_POWER)
oldstrung = "Aura of Power";
else if (oldaur == AURA_RESISTANCE)
oldstrung = "Aura of Resistance";
else if (oldaur == AURA_HASTE)
oldstrung = "Aura of Haste";
else
oldstrung = "Aura of Bugginess.";
if (oldaur == 0)
sprint(self, PRINT_HIGH, "You provide ", targ.netname, " with an ", strung);