| 323 | } |
| 324 | |
| 325 | bool RoomBridge::removeCoveredTile(Tile* t) |
| 326 | { |
| 327 | if(!Room::removeCoveredTile(t)) |
| 328 | return false; |
| 329 | |
| 330 | if(mClaimedValue > CLAIMED_VALUE_PER_TILE) |
| 331 | mClaimedValue -= CLAIMED_VALUE_PER_TILE; |
| 332 | |
| 333 | for(Seat* seat : getGameMap()->getSeats()) |
| 334 | updateFloodFillTileRemoved(seat, t); |
| 335 | |
| 336 | return true; |
| 337 | } |
| 338 | |
| 339 | bool RoomBridge::isClaimable(Seat* seat) const |
| 340 | { |
no outgoing calls
no test coverage detected