Add more decimals to spotter coordinates

This commit is contained in:
2025-01-06 11:56:38 +01:00
parent bd8b3fa00f
commit 5e0f81ce53
4 changed files with 7 additions and 7 deletions

View File

@@ -24,10 +24,10 @@ function shared.CombatAlerter.Init()
local msg = {
channel = "CHANNEL",
data = Heimdall_Data.config.combatAlerter.masterChannel,
message = string.format("%s is attacking me in %s(%s) at %.2f,%.2f ",
message = string.format("%s is attacking me in %s(%s) at %2.2f,%2.2f ",
source,
GetZoneText(), GetSubZoneText(),
x, y
x * 100, y * 100
),
}
table.insert(shared.messenger.queue, msg)