Hotfix empty entry in construction queue (#1725)
This commit is contained in:
parent
762af74b61
commit
fd765fc442
1 changed files with 1 additions and 1 deletions
|
@ -329,7 +329,7 @@ class CityConstructions {
|
|||
|
||||
fun addToQueue(constructionName: String) {
|
||||
if (!isQueueFull()) {
|
||||
if (isQueueEmpty() && currentConstruction == "Nothing") {
|
||||
if (isQueueEmpty() && currentConstruction == "" || currentConstruction == "Nothing") {
|
||||
currentConstruction = constructionName
|
||||
currentConstructionIsUserSet = true
|
||||
} else
|
||||
|
|
Loading…
Reference in a new issue