Compare commits

..

No commits in common. "c22602440178487a83ed6a7f77ec0c25520afc0c" and "6c4e49ef44ab2caa9ba29296d2ad3215fe512ad2" have entirely different histories.

1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package base
import (
"fmt"
"mongo.games.com/game/common"
"mongo.games.com/game/protocol/machine"
"mongo.games.com/goserver/core/logger"
@ -31,7 +32,7 @@ func (this *SrvSessMgr) OnRegiste(s *netlib.Session) {
} else if srvInfo.GetType() == 10 {
logger.Logger.Warn("(this *SrvSessMgr) OnRegiste (Machine):", s)
s.Send(int(machine.DollMachinePacketID_PACKET_SMGameLinkSucceed), &machine.SMGameLinkSucceed{})
logger.Logger.Info("与娃娃机服务器连接成功\n")
fmt.Printf("与娃娃机服务器连接成功\n")
}
}
}