Add space in recent games status notification.
1 files changed, 2 insertions(+), 2 deletions(-) M engine/discord.go
M engine/discord.go => engine/discord.go +2 -2
@@ 282,9 282,9 @@ func playerRecent(ctx *exrouter.Context) { } if online == true { - message = arg + "is online!" + message = arg + " is online!" } else { - message = arg + "is offline!" + message = arg + " is offline!" } gameTime2 := time.Unix(0, int64(gameTime)*1000000)