| 943 | } |
| 944 | |
| 945 | bool Tile::isBuildableUpon(Seat* seat) const |
| 946 | { |
| 947 | if(isFullTile()) |
| 948 | return false; |
| 949 | if(getIsBuilding()) |
| 950 | return false; |
| 951 | if(!isClaimedForSeat(seat)) |
| 952 | return false; |
| 953 | |
| 954 | return true; |
| 955 | } |
| 956 | |
| 957 | void Tile::setCoveringBuilding(Building *building) |
| 958 | { |
no outgoing calls
no test coverage detected