psu_proto: Pass the process state to send_020c.
This commit is contained in:
parent
91f32909bd
commit
dd37bcb941
@ -275,7 +275,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, State=#sta
|
|||||||
psu_game:send_100e(16#7fffffff, 0, 0, AreaName, CounterID),
|
psu_game:send_100e(16#7fffffff, 0, 0, AreaName, CounterID),
|
||||||
psu_proto:send_0215(User, 0),
|
psu_proto:send_0215(User, 0),
|
||||||
psu_proto:send_0215(User, 0),
|
psu_proto:send_0215(User, 0),
|
||||||
psu_proto:send_020c(User),
|
psu_proto:send_020c(State),
|
||||||
psu_game:send_1202(),
|
psu_game:send_1202(),
|
||||||
psu_game:send_1204(),
|
psu_game:send_1204(),
|
||||||
psu_game:send_1206(),
|
psu_game:send_1206(),
|
||||||
|
@ -174,7 +174,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
|
|||||||
true -> ignore
|
true -> ignore
|
||||||
end;
|
end;
|
||||||
true ->
|
true ->
|
||||||
psu_proto:send_020c(User)
|
psu_proto:send_020c(State)
|
||||||
end,
|
end,
|
||||||
if ZoneChange =:= true ->
|
if ZoneChange =:= true ->
|
||||||
case AreaType of
|
case AreaType of
|
||||||
|
@ -1203,8 +1203,8 @@ send_0205(CharUser, IsSeasonal, #state{socket=Socket, gid=DestGID, lid=DestLID})
|
|||||||
16#ffffffff:32, ZoneID:32/little, MapID:32/little, EntryID:32/little, 1:32/little, 0:24, IsSeasonal:8 >>).
|
16#ffffffff:32, ZoneID:32/little, MapID:32/little, EntryID:32/little, 1:32/little, 0:24, IsSeasonal:8 >>).
|
||||||
|
|
||||||
%% @todo No idea what this one does. For unknown reasons it uses channel 2.
|
%% @todo No idea what this one does. For unknown reasons it uses channel 2.
|
||||||
send_020c(DestUser) ->
|
send_020c(#state{socket=Socket}) ->
|
||||||
packet_send(DestUser#egs_user_model.socket, << 16#020c0200:32, 16#ffff0000:32, 0:256 >>).
|
packet_send(Socket, << 16#020c0200:32, 16#ffff0000:32, 0:256 >>).
|
||||||
|
|
||||||
%% @doc Send the quest file to be loaded by the client.
|
%% @doc Send the quest file to be loaded by the client.
|
||||||
send_020e(DestUser, Filename) ->
|
send_020e(DestUser, Filename) ->
|
||||||
|
Loading…
Reference in New Issue
Block a user