Browse Source

[hellfire] correct the name for barrels (#2125)

pull/888/head
Anders Jenbo 5 years ago committed by GitHub
parent
commit
452c72bfcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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