Changeset - r7658:dc7d1afc14ba
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-09-30 18:53:59
rubidium@openttd.org
(svn r11189) -Fix: if the location check callback results in something invalid (i.e. not a callback result), the industry should be allowed to be build as that's how TTDP does it.
1 file changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf_industries.cpp
Show inline comments
 
@@ -439,7 +439,9 @@ bool CheckIfCallBackAllowsCreation(TileI
 

	
 
	group = Resolve(GetIndustrySpec(type)->grf_prop.spritegroup, &object);
 

	
 
	if (group == NULL || group->type != SGT_CALLBACK) return false;
 
	/* Unlike the "normal" cases, not having a valid result means we allow
 
	 * the building of the industry, as that's how it's done in TTDP. */
 
	if (group == NULL || group->type != SGT_CALLBACK) return true;
 

	
 
	switch (group->g.callback.result) {
 
		case 0x400: return true;
0 comments (0 inline, 0 general)