This commit is contained in:
hahwu 2025-07-01 16:42:10 +08:00
parent 1cc633b5ac
commit b6d7913727

View File

@ -212,7 +212,9 @@ func handle(p *Player, m *msg.Msg) error {
Items := m.Item
IsChip := false
if m.Extra != nil {
IsChip = m.Extra.(bool)
if val, ok := m.Extra.(bool); ok {
IsChip = val
}
}
if IsChip {
PlayroomMod.AddChip(m.From, m.SendT)