mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-21 01:29:50 +00:00
Remove isNomad in unknown.js
`isNomad` got removed in 6bb7f3fd39 this use was missed.
It wasn't called. So it always evaluated to true.
This commit is contained in:
@@ -452,7 +452,7 @@ export function* generateMap(mapSettings)
|
||||
]);
|
||||
}
|
||||
|
||||
if (!isNomad && lake && randBool(2/3))
|
||||
if (!mapSettings.Nomad && lake && randBool(2/3))
|
||||
{
|
||||
g_Map.log("Creating small central island");
|
||||
createArea(
|
||||
|
||||
Reference in New Issue
Block a user