File diff r20413:3a2a60d5415a → r20414:612b5fb00359
src/newgrf_house.cpp
Show inline comments
 
@@ -535,9 +535,9 @@ bool CanDeleteHouse(TileIndex tile)
 
{
 
	const HouseSpec *hs = HouseSpec::Get(GetHouseType(tile));
 

	
 
	/* Humans are always allowed to remove buildings, as is water and
 
	/* Humans are always allowed to remove buildings, as is water and disasters and
 
	 * anyone using the scenario editor. */
 
	if (Company::IsValidHumanID(_current_company) || _current_company == OWNER_WATER || _current_company == OWNER_NONE) {
 
	if (Company::IsValidHumanID(_current_company) || _current_company == OWNER_WATER || _current_company == OWNER_NONE || _game_mode == GM_EDITOR || _generating_world) {
 
		return true;
 
	}