From 0867f3d311260d3a1f8cd0bea1c2949355649f76 Mon Sep 17 00:00:00 2001 From: Japa Date: Sat, 28 May 2016 08:29:12 +0530 Subject: [PATCH] Add dig designations to probe.cpp --- plugins/probe.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/probe.cpp b/plugins/probe.cpp index 0dae3d6eb..de0e4d521 100644 --- a/plugins/probe.cpp +++ b/plugins/probe.cpp @@ -302,6 +302,8 @@ command_result df_probe (color_ostream &out, vector & parameters) out << "salty" << endl; if(des.bits.water_stagnant) out << "stagnant" << endl; + + out.print("%-16s= %s\n", "dig", ENUM_KEY_STR(tile_dig_designation,des.bits.dig).c_str()); #define PRINT_FLAG( FIELD, BIT ) out.print("%-16s= %c\n", #BIT , ( FIELD.bits.BIT ? 'Y' : ' ' ) ) PRINT_FLAG( des, hidden );