Begin remigrate to Shiroha
uhm
This commit is contained in:
@@ -15,14 +15,14 @@ index 3c59325cb82a66a74d6605b51db83ff63e59e089..cab6061af551352a27e623af2ced3f49
|
||||
return;
|
||||
}
|
||||
// Paper end - Allow nerfed mobs to jump and float
|
||||
+ int idBasedTickCount = this.tickCount + this.getId(); // Camellia - Petal - Move up
|
||||
+ int idBasedTickCount = this.tickCount + this.getId(); // Shiroha - Petal - Move up
|
||||
ProfilerFiller profiler = Profiler.get();
|
||||
profiler.push("sensing");
|
||||
- this.sensing.tick();
|
||||
+ if (idBasedTickCount % moe.monnairealms.camellia.config.modules.optimizations.PetalReduceSensorWorkConfig.delayTicks == 0 || !moe.monnairealms.camellia.config.modules.optimizations.PetalReduceSensorWorkConfig.enabled) this.sensing.tick(); // Camellia - Petal - Reduce sensor work
|
||||
+ if (idBasedTickCount % moe.monnairealms.camellia.config.modules.optimizations.PetalReduceSensorWorkConfig.delayTicks == 0 || !moe.monnairealms.camellia.config.modules.optimizations.PetalReduceSensorWorkConfig.enabled) this.sensing.tick(); // Shiroha - Petal - Reduce sensor work
|
||||
profiler.pop();
|
||||
- int idBasedTickCount = this.tickCount + this.getId();
|
||||
+ //int idBasedTickCount = this.tickCount + this.getId(); // Camellia - Petal - Move up
|
||||
+ //int idBasedTickCount = this.tickCount + this.getId(); // Shiroha - Petal - Move up
|
||||
if (idBasedTickCount % 2 != 0 && this.tickCount > 1) {
|
||||
profiler.push("targetSelector");
|
||||
this.targetSelector.tickRunningGoals(false);
|
||||
|
||||
Reference in New Issue
Block a user