Look up a block entity.
(&self, block: Block)
| 30 | |
| 31 | /// Look up a block entity. |
| 32 | pub fn contains_block(&self, block: Block) -> bool { |
| 33 | self.locations.contains_key(&block.into()) |
| 34 | } |
| 35 | |
| 36 | /// Look up a stack slot entity. |
| 37 | pub fn contains_ss(&self, ss: StackSlot) -> bool { |
no test coverage detected