test
This commit is contained in:
parent
b441028e15
commit
8c00e4cb04
6
main.go
6
main.go
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user