chore: fmt

This commit is contained in:
Tropical
2026-03-25 16:08:00 -05:00
parent 73392fa06a
commit aff677a995
11 changed files with 36 additions and 66 deletions

View File

@@ -31,13 +31,9 @@ thread_local bool PistonBaseTile::m_tlsIgnoreUpdate = false;
// leaving the piston in a bad (simultaneously extended & not extended) state.
// 4J - ignoreUpdate is a static in java, implementing as TLS here to make
// thread safe
bool PistonBaseTile::ignoreUpdate() {
return m_tlsIgnoreUpdate;
}
bool PistonBaseTile::ignoreUpdate() { return m_tlsIgnoreUpdate; }
void PistonBaseTile::ignoreUpdate(bool set) {
m_tlsIgnoreUpdate = set;
}
void PistonBaseTile::ignoreUpdate(bool set) { m_tlsIgnoreUpdate = set; }
PistonBaseTile::PistonBaseTile(int id, bool isSticky)
: Tile(id, Material::piston, false) {