1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 04:17:39 +00:00

whirl:: celldist and celldistAlt now work

This commit is contained in:
Zeno Rogue
2018-04-06 22:22:33 +02:00
parent 1da55d2175
commit 90d4f0d613
6 changed files with 48 additions and 1 deletions

View File

@@ -321,7 +321,10 @@ void debugScreen() {
dialog::addSelItem("cpdist", its(mouseover->cpdist), 0);
dialog::addSelItem("celldist", its(celldist(mouseover)), 0);
dialog::addSelItem("pathdist", its(mouseover->pathdist), 0);
dialog::addSelItem("celldistAlt", mouseover->master->alt ? its(celldistAlt(mouseover)) : "--", 0);
dialog::addSelItem("temporary", its(mouseover->aitmp), 0);
if(whirl::whirl)
dialog::addSelItem("whirl", whirl::disp(whirl::get_local_info(mouseover).relative), 0);
dialog::addBreak(50);
dialog::addSelItem("monster", dnameof2(mouseover->monst, mouseover->mondir), 0);
dialog::addSelItem("stuntime/hitpoints", its(mouseover->stuntime)+"/"+its(mouseover->hitpoints), 0);