1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +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;
int k = ei->i ^ ei->j ^ i;
help += vdata[k].name;
help += "/" + fts(ei->weight)+":" + fts(ei->weight2) + " ";
if(kind == kSAG)
help += "/" + fts(ei->weight)+":" + fts(ei->weight2) + " ";
}
return o;