We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b7aea73 + 983ded2 commit cb14f0bCopy full SHA for cb14f0b
1 file changed
logic/Location.cpp
@@ -134,6 +134,11 @@ std::string Location::getName() const
134
// Calculates whether the current item can be barren given it's placement at this specific location in mind
135
bool Location::currentItemCanBeBarren() const
136
{
137
+ if (currentItem.getGameItemId() == GameItem::GameBeatable)
138
+ {
139
+ return false;
140
+ }
141
+
142
if (currentItem.canBeInBarrenRegion())
143
144
return true;
0 commit comments