1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-08-05 12:15:26 +01:00

Compile bugfix: remove stray u.

Oops :(
This commit is contained in:
chris 2023-01-11 14:01:20 -05:00
parent fed2759c86
commit 2f9c799c53

View file

@ -2828,7 +2828,7 @@ boolean printdun;
}
}
else if(In_outlands(&mptr->lev)){
if(dunlev(&umptr->lev) == 1) Sprintf(eos(buf)," [Gatetown]");
if(dunlev(&mptr->lev) == 1) Sprintf(eos(buf)," [Gatetown]");
else if(dunlev(&mptr->lev) == 6) Sprintf(eos(buf)," [Spire]");
else if(dunlev(&mptr->lev) == 7) Sprintf(eos(buf)," [Sum of All]");
}