fix login issue*

This commit is contained in:
2026-02-25 12:26:26 -07:00
parent da581f5a20
commit 2c3d0ab580
37 changed files with 4708 additions and 721 deletions

View File

@@ -108,6 +108,16 @@ defmodule Odinsea.Channel.Players do
end
end
@doc """
Finds a player by name in the channel.
Returns the player data or nil if not found.
This is the public API for player lookup by name.
"""
def find_by_name(name, _channel_id \\ nil) do
get_player_by_name(name)
end
@doc """
Updates player data.
"""