| 188 | } |
| 189 | |
| 190 | bool Seat::canOwnedCreatureBePickedUpBy(const Seat* seat) const |
| 191 | { |
| 192 | // Note : if we want to allow players to pickup allied creatures, we can do that here. |
| 193 | if(this == seat) |
| 194 | return true; |
| 195 | |
| 196 | return false; |
| 197 | } |
| 198 | |
| 199 | bool Seat::canOwnedTileBeClaimedBy(const Seat* seat) const |
| 200 | { |
no outgoing calls
no test coverage detected