Skip to content

Commit

Permalink
disable for now
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Dec 26, 2024
1 parent c772d68 commit d2038d1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public boolean isModLoaded(String modId) {
return LoadingModList.get().getModFileById(modId) != null;
}

boolean HAS_CAMO = isModLoaded("cable_facades");

@Override
public String getVersion() {
return LoadingModList.get().getModFileById(Iris.MODID).versionString();
Expand Down Expand Up @@ -56,8 +58,9 @@ public boolean useELS() {
return true;
}

// TODO find a way to do this without breaking Cable Facades...
@Override
public BlockState getBlockAppearance(BlockAndTintGetter level, BlockState state, Direction cullFace, BlockPos pos) {
return state.getAppearance(level, pos, cullFace, null, null);
return state;
}
}

0 comments on commit d2038d1

Please sign in to comment.