From ee42a4b82d8c25e03d84ff9838b03119e376210b Mon Sep 17 00:00:00 2001 From: Player Name Date: Thu, 5 Oct 2023 00:03:32 +0000 Subject: [PATCH] The name of the location where the shooting star has dropped is now no longer lowercased --- .../main/content/global/activity/shootingstar/ShootingStar.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Server/src/main/content/global/activity/shootingstar/ShootingStar.kt b/Server/src/main/content/global/activity/shootingstar/ShootingStar.kt index 1ea776e49..9663b16fa 100644 --- a/Server/src/main/content/global/activity/shootingstar/ShootingStar.kt +++ b/Server/src/main/content/global/activity/shootingstar/ShootingStar.kt @@ -122,7 +122,7 @@ class ShootingStar(var level: ShootingStarType = ShootingStarType.values().rando selfBots.filter { it.isIdle() }.forEach { it.activate(true) } } isSpawned = true - Repository.sendNews("A shooting star level ${level.ordinal + 1} just crashed near ${location.toLowerCase()}!") + Repository.sendNews("A shooting star level ${level.ordinal + 1} just crashed near ${location}!") } /** @@ -220,4 +220,4 @@ enum class ShootingStarType(val objectId: Int, val exp: Int, val totalStardust: LEVEL_7(38662, 114, 40, 0.80), LEVEL_8(38661, 145, 25, 0.85), LEVEL_9(38660, 210, 15, 0.95); -} \ No newline at end of file +}