diff --git a/src/table/newgrf_debug_data.h b/src/table/newgrf_debug_data.h index 7db96f3bf4..65ead046d9 100644 --- a/src/table/newgrf_debug_data.h +++ b/src/table/newgrf_debug_data.h @@ -572,6 +572,12 @@ class NIHIndustry : public NIHelper { print(buffer); } } + + const IndustrySpec *indsp = GetIndustrySpec(ind->type); + seprintf(buffer, lastof(buffer), " CBM_IND_PRODUCTION_CARGO_ARRIVAL: %s", HasBit(indsp->callback_mask, CBM_IND_PRODUCTION_CARGO_ARRIVAL) ? "yes" : "no"); + print(buffer); + seprintf(buffer, lastof(buffer), " CBM_IND_PRODUCTION_256_TICKS: %s", HasBit(indsp->callback_mask, CBM_IND_PRODUCTION_256_TICKS) ? "yes" : "no"); + print(buffer); } } };