| 920 | return false; |
| 921 | } |
| 922 | inline bool Maps::RemoveBlockEvent(int32_t x, int32_t y, int32_t z, df::block_square_event * which) |
| 923 | { |
| 924 | return RemoveBlockEventInline(x, y, z, which); |
| 925 | } |
| 926 | bool Maps::RemoveBlockEvent(uint32_t x, uint32_t y, uint32_t z, df::block_square_event * which) //todo: deprecate me |
| 927 | { |
| 928 | return RemoveBlockEventInline(int32_t(x), int32_t(y), int32_t(z), which); |
nothing calls this directly
no test coverage detected