psu_game: 12_xx commands must not be sent on area change that stays in the same zone.

This commit is contained in:
Loïc Hoguin 2010-08-27 18:54:23 +02:00
parent 2d8b8ce602
commit 883c12eea7

View File

@ -366,20 +366,23 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
true ->
send_020c()
end,
case AreaType of
myroom ->
send_1332(),
send_1202(),
send_1204(),
send_1206();
mission ->
send_1202(),
send_1204(),
send_1206(),
send_1207();
_ -> ignore
if ZoneChange =:= true ->
case AreaType of
myroom ->
send_1332(),
send_1202(),
send_1204(),
send_1206();
mission ->
send_1202(),
send_1204(),
send_1206(),
send_1207();
_ -> ignore
end;
true -> ignore
end,
if AreaType /= spaceport ->
if ZoneChange, AreaType /= spaceport ->
send_1212();
true -> ignore
end,