This commit is contained in:
shoopea 2020-06-21 21:15:09 +02:00
parent b441028e15
commit 8c00e4cb04

View File

@ -24,7 +24,7 @@ var (
clients map[uint32]*Client
paused bool = true
forcePaused bool = true
forcePausedBy string
pausedBy string
githash string
buildstamp string
@ -204,11 +204,11 @@ func main() {
if sp.Message == "!unpause" {
logInfoDebug("AdminPacketServerChat : Unpausing")
forcePaused = false
forcePausedBy = clients[sp.ClientID].Name
pausedBy = clients[sp.ClientID].Name
} else if sp.Message == "!pause" {
logInfoDebug("AdminPacketServerChat : Pausing")
forcePaused = true
forcePausedBy = clients[sp.ClientID].Name
pausedBy = clients[sp.ClientID].Name
} else {
logInfoDebug("AdminPacketServerChat :\n- ActionID: %d\n- DestinationID: %d\n- ClientID: %d\n- Message: %s\n- Amount: %d", sp.ActionID, sp.DestinationID, sp.ClientID, sp.Message, sp.Amount)
}