Skip to content

Commit ff6b7e7

Browse files
committed
Fix build error: correct type from int[] to float[] for den locations
Den location coordinates are stored as float arrays, not int arrays. This fixes the type mismatch compilation error in LogPlayerLocation.
1 parent 6662d63 commit ff6b7e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SysBot.Pokemon/SV/BotRaid/RotatingRaidBotSV.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4227,7 +4227,7 @@ private async Task LogPlayerLocation(CancellationToken token)
42274227
.Where(kv => !string.IsNullOrEmpty(kv.Value))
42284228
.Select(kv =>
42294229
{
4230-
Dictionary<string, int[]>? denLocations = kv.Key switch
4230+
Dictionary<string, float[]>? denLocations = kv.Key switch
42314231
{
42324232
"Blueberry" => blueberryLocations,
42334233
"Kitakami" => kitakamiLocations,

0 commit comments

Comments
 (0)