update
All checks were successful
/ Auto-Build-App (push) Successful in 1m4s

This commit is contained in:
pietru 2025-02-21 23:13:34 +01:00
parent 4d01bdaeb8
commit adf6ec31ef
3 changed files with 4 additions and 1 deletions

View file

@ -4,7 +4,7 @@ org.gradle.parallel=true
org.gradle.caching=false
# Project Info
version=1.8.1
version=1.8.2
group=net.pietru
id=omni_power

View file

@ -88,6 +88,7 @@ public class HoloBlock extends Entity {
}
}
@Override
public void write(CRBinSerializer serial) {
//super.write(serial);
//Probably disable for Hologram it can be recreated next time game starts

View file

@ -142,6 +142,8 @@ public class Power implements IBlockAction {
BlockState state = pos.getBlockState();
if (state==null)
return false;
if (state.stringId==null)
return false;
return state.stringId.contains(dir) || state.stringId.contains("any_in_power") || !(
state.stringId.contains("xp_power")||
state.stringId.contains("xm_power")||