Merge pull request #1581 from colobot/1580-wasp-grabbing-behavior-broken

Fixed wasp not having a valid cargo slot
fix-squashed-planets
Emxx52 2023-05-26 21:12:56 +02:00 committed by GitHub
commit 10b89e36f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -792,7 +792,8 @@ void COldObject::SetType(ObjectType type)
m_type == OBJECT_MOBILEta ||
m_type == OBJECT_MOBILEwa ||
m_type == OBJECT_MOBILEia ||
m_type == OBJECT_MOBILEsa) // subber
m_type == OBJECT_MOBILEsa || // subber
m_type == OBJECT_BEE)
{
m_hasCargoSlot = true;
}