24 lines
445 B
Plaintext
24 lines
445 B
Plaintext
#modloaded appliedenergistics2
|
|
#loader mixin
|
|
|
|
import mixin.CallbackInfo;
|
|
|
|
|
|
#mixin {value: "appeng.me.cache.NetworkMonitor"}
|
|
zenClass MixinNetworkMonitor {
|
|
#mixin Inject
|
|
#{
|
|
# method: "lambda$postChange$1",
|
|
# at :{
|
|
# value : "INVOKE",
|
|
# target : "Lappeng/me/cache/NetworkMonitor;setForceUpdate(Z)V"
|
|
# },
|
|
# cancellable: true
|
|
#}
|
|
function removeForceUpdateCall(ci as CallbackInfo) as void {
|
|
ci.cancel();
|
|
}
|
|
}
|
|
|
|
|