Skip to content

Commit

Permalink
Fix a nasty crash due to an oversight
Browse files Browse the repository at this point in the history
  • Loading branch information
crudelios committed Jan 26, 2025
1 parent a817184 commit 6367562
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/building/properties.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,14 @@ static building_properties properties[BUILDING_TYPE_MAX] = {
.fire_proof = 1,
.image_group = 81
},
[BUILDING_LOW_BRIDGE] = {
.size = 1,
.fire_proof = 1
},
[BUILDING_SHIP_BRIDGE] = {
.size = 1,
.fire_proof = 1
},
[BUILDING_SENATE] = {
.size = 5,
.disallowable = 1,
Expand Down Expand Up @@ -443,6 +451,10 @@ static building_properties properties[BUILDING_TYPE_MAX] = {
.fire_proof = 1,
.image_group = 76
},
[BUILDING_BURNING_RUIN] = {
.size = 1,
.fire_proof = 1
},
[BUILDING_WHEAT_FARM] = {
.size = 3,
.disallowable = 1,
Expand Down

0 comments on commit 6367562

Please sign in to comment.