diff --git a/NEWS.rst b/NEWS.rst index 9fcfd5fa3..9260ad1fc 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -192,6 +192,7 @@ Misc Improvements - `fix/diplomats`: replaces ``fixdiplomats`` - `fix/merchants`: replaces ``fixmerchants`` - `prefchange`: added a ``help`` option +- `probe`: now displays raw tiletype names - Unified script documentation and in-terminal help options Removed diff --git a/plugins/probe.cpp b/plugins/probe.cpp index 94ebc1884..63acfe3da 100644 --- a/plugins/probe.cpp +++ b/plugins/probe.cpp @@ -119,6 +119,7 @@ void describeTile(color_ostream &out, df::tiletype tiletype) out.print("%d", tiletype); if(tileName(tiletype)) out.print(" = %s",tileName(tiletype)); + out.print(" (%s)", ENUM_KEY_STR(tiletype, tiletype).c_str()); out.print("\n"); df::tiletype_shape shape = tileShape(tiletype);