use of net.glowstone.block.entity.SignEntity in project Glowstone by GlowstoneMC.
the class GlowSign method update.
@Override
public boolean update(boolean force, boolean applyPhysics) {
boolean result = super.update(force, applyPhysics);
if (result) {
SignEntity sign = getBlockEntity();
sign.setLines(lines);
sign.updateInRange();
}
return result;
}
use of net.glowstone.block.entity.SignEntity in project Glowstone by GlowstoneMC.
the class GlowSign method update.
@Override
public boolean update(boolean force, boolean applyPhysics) {
boolean result = super.update(force, applyPhysics);
if (result) {
SignEntity sign = getBlockEntity();
sign.setLines(lines);
sign.updateInRange();
}
return result;
}
Aggregations