Hbm's Nuclear Tech - Extended Edition

Hbm's Nuclear Tech - Extended Edition

292k Downloads

No way to remove coal dust disease in config

Aroraptor opened this issue ยท 5 comments

commented

There is no part in the config where you can remove the effects.

commented

1.9.5-I added the option to remove black lung. But if you mean the removal of the particles produced from mining coal ore then yes, the dust particles still appear even if the config has coal gas turned off.

commented

At the moment, there doesn't appear to be any toggle that allows you to disable the black lung disease.

/// BLACK LUNG DISEASE ///
public static int getBlackLung(EntityLivingBase entity){
return getData(entity).getBlacklung();
}
public static void setBlackLung(EntityLivingBase entity, int blacklung){
getData(entity).setBlacklung(blacklung);
if(blacklung >= EntityHbmProps.maxBlacklung) {
getData(entity).setBlacklung(0);
entity.attackEntityFrom(ModDamageSource.blacklung, 1000);
}
}
public static void incrementBlackLung(EntityLivingBase entity, int blacklung){
setBlackLung(entity, getBlackLung(entity) + blacklung);
}

I think this fork is currently missing a lot of config options compared to TheOriginalGolem's version being 85 commits behind. It could be worth going through all the missing changes and seeing what we could merge, one of them being the black lung toggle.

commented

Unless it's the Added Coal Config toggle as per the patch notes...? Not entirely sure what that one does, and I'm kinda too lazy rn to search the SRC lmao

commented

I recall switching from Golem's version to Alcater's, when I did the option was gone until the 1.9.5-I update, this is what my config say now (at line 53):

# Enables call lists for a few models, making them render extremely fast
B:1.26_callListModels=true
B:1.26_enableAsbestosDust=false
B:1.26_enableCoalDust=false
B:1.27_enableBabyMode=true

I am currently using this feature in survival world with the most recent release and I get no lung problems when mining coal, in spite of the particles still appearing.

commented

This just disables the mechanic