1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

no more weights shown in the description for non-SAG graphs

This commit is contained in:
Zeno Rogue 2018-07-05 09:57:01 +02:00
parent 286ef689a7
commit 0c4ab20867

View File

@ -966,7 +966,8 @@ string describe(shmup::monster *m) {
if(!ei->visible) continue; if(!ei->visible) continue;
int k = ei->i ^ ei->j ^ i; int k = ei->i ^ ei->j ^ i;
help += vdata[k].name; help += vdata[k].name;
help += "/" + fts(ei->weight)+":" + fts(ei->weight2) + " "; if(kind == kSAG)
help += "/" + fts(ei->weight)+":" + fts(ei->weight2) + " ";
} }
return o; return o;