File diff r1900:0f789eafac2b → r1901:e806afa50723
tree_cmd.c
Show inline comments
 
@@ -195,7 +195,7 @@ int32 CmdPlantTree(int ex, int ey, uint3
 
					break;
 

	
 
				case MP_CLEAR:
 
					if (_map_owner[ti.tile] != OWNER_NONE) {
 
					if (!IsTileOwner(ti.tile, OWNER_NONE)) {
 
						_error_message = STR_2804_SITE_UNSUITABLE;
 
						continue;
 
					}
 
@@ -396,7 +396,7 @@ static void GetTileDesc_Trees(uint tile,
 
	byte b;
 
	StringID str;
 

	
 
	td->owner = _map_owner[tile];
 
	td->owner = GetTileOwner(tile);
 

	
 
	b = _map3_lo[tile];
 
	(str=STR_2810_CACTUS_PLANTS, b==0x1B) ||