Skip to content

Commit

Permalink
Change default HouseType color to white from black
Browse files Browse the repository at this point in the history
  • Loading branch information
Rampastring committed Oct 24, 2024
1 parent 2b324d2 commit ff63107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TSMapEditor/Initialization/MapLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ public static void ReadHouseTypes(IMap map, IniFile mapIni)
var color = map.Rules.Colors.Find(c => c.Name == houseType.Color);
if (color == null)
{
houseType.XNAColor = Color.Black;
houseType.XNAColor = Color.White;
}
else
{
Expand Down

0 comments on commit ff63107

Please sign in to comment.