Changes between Initial Version and Version 3 of Ticket #3199


Ignore:
Timestamp:
May 24, 2015, 7:58:37 PM (9 years ago)
Author:
elexis
Comment:

This one happened again, in a real match this time:

ERROR: Net server: Error running FSM update (type=17 state=3)

According to the error, a player was trying to reconnect while the game was loading. He was never seen again. I think it might be caused by a faulty player assignment (two players being assigned to the same slot and disconnecting one of them). Don't have hard facts on that yet though.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3199 – Description

    initial v3  
    2828        NMT_CHAT = 6,           // Common chat message
    2929        NMT_READY = 7,
    30         /// ...
     30        NMT_GAME_SETUP = 8,
     31        NMT_PLAYER_ASSIGNMENT = 9,
     32
     33        NMT_FILE_TRANSFER_REQUEST = 10,
     34        NMT_FILE_TRANSFER_RESPONSE = 11,
     35        NMT_FILE_TRANSFER_DATA = 12,
     36        NMT_FILE_TRANSFER_ACK = 13,
     37
     38        NMT_JOIN_SYNC_START = 14,
     39
     40        NMT_REJOINED = 15,
     41
     42        NMT_LOADED_GAME = 16,
     43        NMT_GAME_START = 17,
     44        NMT_END_COMMAND_BATCH = 18,
     45        NMT_SYNC_CHECK = 19,    // OOS-detection hash checking
     46        NMT_SYNC_ERROR= 20,     // OOS-detection error
     47        NMT_SIMULATION_COMMAND = 21,
     48        NMT_LAST = 22                   // Last message in the list
    3149};
    3250}}}