Skip to content

Commit

Permalink
[Magiclysm] Stop workshop elves and their workshop from spawning (#78842
Browse files Browse the repository at this point in the history
)

* Initial commit

* Add SHOULD_NOT_SPAWN flag

* Add comment about EoC spawning

* Kick tests

* Kick tests

* SHOULD_NOT_SPAWN goes on the terrain definition
  • Loading branch information
Standing-Storm authored Dec 30, 2024
1 parent 0f6295e commit 10c849b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions data/mods/Magiclysm/worldgen/elf_workshop.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"locations": [ "wilderness" ],
"city_distance": [ 20, -1 ],
"city_sizes": [ 0, 13 ],
"occurrences": [ 0, 2 ]
"occurrences": [ 0, 0 ],
"//": "Currently does not spawn because seasonal locations are not supported. A global EoC could be used to spawn it in a particular location.",
"flags": [ "GLOBALLY_UNIQUE", "SHOULD_NOT_SPAWN" ]
},
{
"type": "overmap_terrain",
Expand All @@ -84,6 +86,6 @@
"sym": "W",
"color": "red",
"see_cost": "high",
"flags": [ "RISK_HIGH" ]
"flags": [ "RISK_HIGH", "SHOULD_NOT_SPAWN" ]
}
]

0 comments on commit 10c849b

Please sign in to comment.