Update position not invalid tile

This commit is contained in:
Layla 2020-08-21 02:28:31 -04:00
parent 85e603d082
commit c0c82f3677
No known key found for this signature in database
GPG Key ID: A494D9357BA1BE31

View File

@ -113,7 +113,7 @@ func (m *Match) MatchJoin(ctx context.Context, logger runtime.Logger, db *sql.DB
if jsonObj, err := player.GetPosJSON(); err != nil {
logger.Error(err.Error())
} else {
if sendErr := dispatcher.BroadcastMessage(OpCodeTileUpdate, jsonObj, []runtime.Presence{precense}, player.Presence, true); sendErr != nil {
if sendErr := dispatcher.BroadcastMessage(OpCodeUpdatePosition, jsonObj, []runtime.Presence{precense}, player.Presence, true); sendErr != nil {
logger.Error(sendErr.Error())
}
}