Browse Source

[hellfire] correct the name for barrels

pull/888/head
Chance4us 5 years ago
parent
commit
2477d956e9
  1. 7
      Source/objects.cpp

7
Source/objects.cpp

@ -5261,6 +5261,13 @@ void GetObjectStr(int i)
break;
case OBJ_BARREL:
case OBJ_BARRELEX:
#ifdef HELLFIRE
if (currlevel > 16 && currlevel < 21) // for hive levels
strcpy(infostr, "Pod"); //Then a barrel is called a pod
else if (currlevel > 20 && currlevel < 25) // for crypt levels
strcpy(infostr, "Urn"); //Then a barrel is called an urn
else
#endif
strcpy(infostr, "Barrel");
break;
case OBJ_SKELBOOK:

Loading…
Cancel
Save