From 6d699a22e9ca445b8a615bb9f42a2e44cf0415e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 4 Jun 2010 18:17:59 +0200 Subject: [PATCH] proto: Update send_quest for conformance. --- src/egs_proto.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/egs_proto.erl b/src/egs_proto.erl index 2a78eda..27faf97 100644 --- a/src/egs_proto.erl +++ b/src/egs_proto.erl @@ -259,11 +259,12 @@ send_player_card(CSocket, GID, Char, Number) -> packet_send(CSocket, Packet). %% @doc Send the quest file to be loaded. +%% @todo Probably should try sending the checksum like value (right before the file) and see if it magically fixes anything. send_quest(CSocket, Filename) -> {ok, File} = file:read_file(Filename), Size = byte_size(File), - Packet = << 16#020e:16, 0:304, Size:32/little-unsigned-integer, 0:32, File/binary >>, + Packet = << 16#020e0300:32, 0:288, Size:32/little-unsigned-integer, 0:32, File/binary, 0:32 >>, packet_send(CSocket, Packet). %% @doc Send the trial start notification.