MCPcopy Create free account
hub / github.com/DFHack/dfhack / RemoveBlockEvent

Method RemoveBlockEvent

library/modules/Maps.cpp:922–925  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

920 return false;
921}
922inline 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}
926bool 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);

Callers

nothing calls this directly

Calls 1

RemoveBlockEventInlineFunction · 0.85

Tested by

no test coverage detected