From b10eea628d07bf69c22faa6a156c337b41c15276 Mon Sep 17 00:00:00 2001 From: belugas Date: Tue, 27 Nov 2007 17:13:49 +0000 Subject: (svn r11534) -Feature(newgrf): Implement property 23h for Industries. This will add a cost to the removal of an industry using the cheat magic bulldozer. Note that the removal of regular or newgrf industries without specified removal cost will have no cost applied to. This is a difference from original spec, where a default base cost is added. --- src/newgrf.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/newgrf.cpp') diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 1a6ab3b6b..5f8889db5 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -2066,6 +2066,10 @@ static bool IndustriesChangeInfo(uint indid, int numinfo, int prop, byte **bufp, SB(indsp->callback_flags, (prop - 0x21) * 8, 8, aflag); } break; + case 0x23: // removal cost multiplier + indsp->removal_cost_multiplier = grf_load_dword(&buf); + break; + default: ret = true; break; -- cgit v1.2.3-54-g00ecf