fix(socket): 修复socket广播和退出逻辑中的返回值错误

- 修正了Broadcast方法中错误的返回值true为false
- 修正了QuitSelf方法中player遍历的返回值从true改为false
- 在玩家退出时添加了睡眠模式错误码通知消息

feat(fight): 统一技能使用方法命名并修复战斗伤害计算逻辑

- 将所有技能使用方法名从Skill_Useed重命名为SkillUseed以保持一致性
This commit is contained in:
昔念
2026-01-25 17:36:40 +08:00
parent 2df2f63593
commit 4dd05726af
15 changed files with 30 additions and 19 deletions

View File

@@ -3,8 +3,8 @@ module blazing/contrib/drivers/pgsql
go 1.20
require (
github.com/gogf/gf/contrib/drivers/pgsql/v2 v2.8.0
github.com/gogf/gf/v2 v2.8.0
github.com/gogf/gf/contrib/drivers/pgsql/v2 v2.9.8
github.com/gogf/gf/v2 v2.9.8
gorm.io/driver/postgres v1.5.6
gorm.io/gorm v1.25.7
)