mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 14:37:16 +00:00
rulegen:: tests:: nicer MYSTERY_DIST display
This commit is contained in:
parent
096364bb06
commit
72f0f9b28b
@ -95,7 +95,7 @@ void view_debug() {
|
||||
tcell *tc = m->counterpart[c->master];
|
||||
|
||||
string s;
|
||||
auto label = (tc->code == MYSTERY ? "?" : its(tc->code)) + "/" + (tc->dist == MYSTERY ? "?" : its(tc->dist));
|
||||
auto label = (tc->code == MYSTERY ? "?" : its(tc->code)) + "/" + (tc->dist == MYSTERY ? "?" : tc->dist == MYSTERY_DIST ? "*" : its(tc->dist));
|
||||
|
||||
color_t col = 0xFFFFFF + 0x512960 * tc->code;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user