proto: Conformance for send_loading_end, 0208.

This commit is contained in:
Loïc Hoguin 2010-06-04 19:49:52 +02:00
parent fe126f4bb5
commit 945217010e

View File

@ -221,9 +221,10 @@ send_load_quest(CSocket, GID) ->
packet_send(CSocket, Packet). packet_send(CSocket, Packet).
%% @doc Indicate to the client that loading should finish. %% @doc Indicate to the client that loading should finish.
%% @todo Last value seems to be 2 most of the time. Never 0 though.
send_loading_end(CSocket, GID) -> send_loading_end(CSocket, GID) ->
Packet = << 16#0208:16, 0:208, GID:32/little-unsigned-integer, 0:96 >>, Packet = << 16#02080300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 2:32/little-unsigned-integer >>,
packet_send(CSocket, Packet). packet_send(CSocket, Packet).
%% @doc Send the player's current location. %% @doc Send the player's current location.