mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-03-21 17:44:58 -05:00
12 lines
222 B
Go
12 lines
222 B
Go
package gamestats
|
|
|
|
import (
|
|
"wwfc/gpcm"
|
|
"wwfc/logging"
|
|
)
|
|
|
|
func (g *GameStatsSession) replyError(err gpcm.GPError) {
|
|
logging.Error(g.ModuleName, "Reply error:", err.ErrorString)
|
|
g.Conn.Write([]byte(err.GetMessage()))
|
|
}
|