src/dummy_land.cpp
branchgamebalance
changeset 9913 e79cd19772dd
parent 9912 1ac8aac92385
child 6743 cabfaa4a0295
equal deleted inserted replaced
9912:1ac8aac92385 9913:e79cd19772dd
    24 static Slope GetSlopeTileh_Dummy(TileIndex tile, Slope tileh)
    24 static Slope GetSlopeTileh_Dummy(TileIndex tile, Slope tileh)
    25 {
    25 {
    26 	return SLOPE_FLAT;
    26 	return SLOPE_FLAT;
    27 }
    27 }
    28 
    28 
    29 static int32 ClearTile_Dummy(TileIndex tile, byte flags)
    29 static CommandCost ClearTile_Dummy(TileIndex tile, byte flags)
    30 {
    30 {
    31 	return_cmd_error(STR_0001_OFF_EDGE_OF_MAP);
    31 	return_cmd_error(STR_0001_OFF_EDGE_OF_MAP);
    32 }
    32 }
    33 
    33 
    34 
    34