Skip to content

Commit

Permalink
Fix Mixin Error
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit committed Nov 14, 2024
1 parent c24afc3 commit a75252c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
@Mixin(value = MetaTileEntityLargeBoiler.class, remap = false)
public class MetaTileEntityLargeBoilerMixin {
@Redirect(method = "addInformation", at = @At(value = "INVOKE", target = "Lgregtech/common/metatileentities/multi/BoilerType;runtimeBoost(I)I", remap = false), remap = true)
@Redirect(method = "addInformation", at = @At(value = "INVOKE", target = "Lgregtech/common/metatileentities/multi/BoilerType;runtimeBoost(I)I"))
private int getNewRuntimeBoost(BoilerType instance, int ticks) {
return instance.runtimeBoost(ticks * 10);
}
Expand Down

0 comments on commit a75252c

Please sign in to comment.