Fix stability issues and a various assortment of other bugs

This commit is contained in:
Ryan
2022-01-11 09:36:57 +00:00
parent d3bb3905b3
commit 47bc652eed
512 changed files with 5297 additions and 2193 deletions
+4 -4
View File
@@ -40,8 +40,8 @@ import rs09.game.content.dialogue.SkillDialogueHandler
import rs09.game.content.global.GlobalKillCounter;
import rs09.game.system.SystemLogger
import rs09.game.system.config.ItemConfigParser;
import rs09.game.world.World
import rs09.game.world.World.Pulser
import rs09.game.world.GameWorld
import rs09.game.world.GameWorld.Pulser
import rs09.game.world.repository.Repository
/**
@@ -397,7 +397,7 @@ fun hasSpaceFor(player: Player, item: Item): Boolean {
*/
fun getWorldTicks(): Int {
return World.ticks
return GameWorld.ticks
}
/**
@@ -962,7 +962,7 @@ fun <A,G> visualize(entity: Entity, anim: A, gfx: G){
*/
fun submitWorldPulse(pulse: Pulse){
World.Pulser.submit(pulse)
GameWorld.Pulser.submit(pulse)
}
/**