Tweaked vstuff rope pulley stress requirement
This commit is contained in:
parent
12143cbb50
commit
01ac8dcbbc
3 changed files with 21 additions and 1 deletions
|
|
@ -186,6 +186,7 @@ dependencies {
|
||||||
implementation fg.deobf("curse.maven:jei-238222:7391695")
|
implementation fg.deobf("curse.maven:jei-238222:7391695")
|
||||||
implementation fg.deobf("curse.maven:curios-309927:5367944")
|
implementation fg.deobf("curse.maven:curios-309927:5367944")
|
||||||
implementation fg.deobf("curse.maven:tacz-1028108:6654541")
|
implementation fg.deobf("curse.maven:tacz-1028108:6654541")
|
||||||
|
implementation fg.deobf("curse.maven:vstuff-1319439:7536895")
|
||||||
implementation fg.deobf("maven.modrinth:prototype-pain:2.7.2")
|
implementation fg.deobf("maven.modrinth:prototype-pain:2.7.2")
|
||||||
implementation fg.deobf("maven.modrinth:warium:1.2.7")
|
implementation fg.deobf("maven.modrinth:warium:1.2.7")
|
||||||
implementation fg.deobf("software.bernie.geckolib:geckolib-forge-1.20.1:4.8.3")
|
implementation fg.deobf("software.bernie.geckolib:geckolib-forge-1.20.1:4.8.3")
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
package xyz.illuc.neuralgiacore.mixin.vstuff;
|
||||||
|
|
||||||
|
import net.minecraft.world.entity.player.Player;
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.Overwrite;
|
||||||
|
import yay.evy.everest.vstuff.content.pulley.PhysPulleyBlockEntity;
|
||||||
|
|
||||||
|
@Mixin(PhysPulleyBlockEntity.class)
|
||||||
|
public class MixinModifyRopePulleyStress {
|
||||||
|
/**
|
||||||
|
* @author
|
||||||
|
* @reason
|
||||||
|
*/
|
||||||
|
@Overwrite(remap = false)
|
||||||
|
public float calculateStressApplied() {
|
||||||
|
return 8f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -21,7 +21,8 @@
|
||||||
"Tfc.MixinOptimizeClimateUpdate",
|
"Tfc.MixinOptimizeClimateUpdate",
|
||||||
"TfcAmbiental.MixinDisableTemperatureDamage",
|
"TfcAmbiental.MixinDisableTemperatureDamage",
|
||||||
"vanilla.MixinFixRiding",
|
"vanilla.MixinFixRiding",
|
||||||
"vanilla.MixinFixServerRiding"
|
"vanilla.MixinFixServerRiding",
|
||||||
|
"vstuff.MixinModifyRopePulleyStress"
|
||||||
],
|
],
|
||||||
"client": [
|
"client": [
|
||||||
"TfcAmbiental.MixinSkipVignette",
|
"TfcAmbiental.MixinSkipVignette",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue