We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a77e1b8 commit a1c39d5Copy full SHA for a1c39d5
modules/gmcp/gmcp.Game.go
@@ -128,9 +128,10 @@ func (g *GMCPGameModule) sendAllGameNodes(userId int) {
128
129
// Send Game.Info
130
infoPayload := map[string]interface{}{
131
- "engine": "GoMud",
132
- "login_time": user.GetConnectTime().Format(tFormat),
133
- "name": string(c.Server.MudName),
+ "engine": "GoMud",
+ "login_time": user.GetConnectTime().Format(tFormat),
+ "login_time_epoch": user.GetConnectTime().Unix(),
134
+ "name": string(c.Server.MudName),
135
}
136
137
events.AddToQueue(GMCPOut{
0 commit comments