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 -> true ->
send_020c() send_020c()
end, end,
case AreaType of if ZoneChange =:= true ->
myroom -> case AreaType of
send_1332(), myroom ->
send_1202(), send_1332(),
send_1204(), send_1202(),
send_1206(); send_1204(),
mission -> send_1206();
send_1202(), mission ->
send_1204(), send_1202(),
send_1206(), send_1204(),
send_1207(); send_1206(),
_ -> ignore send_1207();
_ -> ignore
end;
true -> ignore
end, end,
if AreaType /= spaceport -> if ZoneChange, AreaType /= spaceport ->
send_1212(); send_1212();
true -> ignore true -> ignore
end, end,