Can remove the typos now

This commit is contained in:
Player Name 2026-05-30 18:37:19 +02:00
parent 9dbd71c41f
commit 87e1b5e74c

View file

@ -452,8 +452,6 @@ object RegionManager {
@JvmStatic fun getSurroundingPlayers(player: Entity, maximum: Int): List<Player> = getLocalEntities<Player>(player.location, 1, maximum, null)
@JvmStatic fun getSurroundingNPCs(npc: Entity, maximum: Int): List<NPC> = getLocalEntities<NPC>(npc.location, 1, maximum, null)
@JvmStatic fun getLocalPlayersBoundingBox(location: Location, maximum: Int): List<Player> = getLocalEntities<Player>(location, 1, maximum, null)
@JvmStatic fun getLocalNPCBoundingBox(location: Location, maximum: Int): List<NPC> = getLocalEntities<NPC>(location, 1, maximum, null)
@JvmStatic fun getLocalEntitys(location: Location, distance: Int): List<Entity> = getLocalEntities<Entity>(location, distance, 0, null) //typoed version to avoid merge conflict with !2269
/**
* Gets a random teleport location in the radius around the given location.