fix(player): 移除GetAction方法中的冗余return语句

移除了Player结构体中GetAction方法内不必要的return语句,
该语句在方法末尾没有实际作用,清理后使代码更加简洁。
This commit is contained in:
2025-10-10 23:38:43 +08:00
parent 646eeeaa2b
commit 6c9ee0c73a
2 changed files with 0 additions and 1 deletions

BIN
logic/logic1 Normal file

Binary file not shown.

View File

@@ -122,7 +122,6 @@ func WithConn(c *Conn) PlayerOption {
func (p *Player) GetAction() {
return
}
// 刷怪具体实现