Rewrote or refactored many interfaces, fixing many small bugs

This commit is contained in:
Player Name
2025-07-15 11:56:19 +00:00
committed by Ryan
parent 7cf5049687
commit 264c2aa550
49 changed files with 796 additions and 1523 deletions
+1 -1
View File
@@ -1918,7 +1918,7 @@ fun runTask(entity: Entity, delay: Int = 0, repeatTimes: Int = 1, task: () -> Un
entity.pulseManager.run(object : Pulse(delay) {
override fun pulse(): Boolean {
task.invoke()
return --cycles == 0
return --cycles <= 0
}
})
}