Spaceship should not be bought.

This commit is contained in:
Duan Tao 2019-09-17 09:50:57 +08:00 committed by Yair Morgenstern
parent d7d7d9a7e6
commit 0f1f5bf746

View File

@ -184,7 +184,7 @@ class Building : NamedStats(), IConstruction{
}
override fun canBePurchased(): Boolean {
return !isWonder && !isNationalWonder
return !isWonder && !isNationalWonder && ("Spaceship part" !in uniques)
}