psu_game: Temporarily allow chat to be sent from GID = 0. Prevents disconnection while investigating a bug with the tutorial.

This commit is contained in:
Loïc Hoguin 2010-09-02 00:20:03 +02:00
parent 9f42e24cea
commit a258c388a7

View File

@ -543,12 +543,12 @@ event({area_change, QuestID, ZoneID, MapID, EntryID}) ->
%% @todo In the case of NPC characters, when FromTypeID is 00001d00, check that the NPC is in the party and broadcast only to the party (probably). %% @todo In the case of NPC characters, when FromTypeID is 00001d00, check that the NPC is in the party and broadcast only to the party (probably).
%% @todo When the game doesn't find an NPC (probably) and forces it to talk like in the tutorial mission it seems FromTypeID, FromGID and Name are all 0. %% @todo When the game doesn't find an NPC (probably) and forces it to talk like in the tutorial mission it seems FromTypeID, FromGID and Name are all 0.
%% @todo Make sure modifiers have correct values. %% @todo Make sure modifiers have correct values.
event({chat, _FromTypeID, FromGID, _FromName, Modifiers, ChatMsg}) -> event({chat, FromTypeID, FromGID, FromName, Modifiers, ChatMsg}) ->
UserGID = get(gid), UserGID = get(gid),
[BcastTypeID, BcastGID, BcastName] = case FromGID of [BcastTypeID, BcastGID, BcastName] = case FromGID of
0 -> %% @todo unknown; just fail for now. 0 -> %% @todo This isn't safe. This probably shouldn't happen either.
log("event chat FromGID=0"), log("chat FromGID=0"),
ignore; %% @todo This will trigger an error. [FromTypeID, FromGID, FromName];
UserGID -> %% player chat: disregard whatever was sent except modifiers and message. UserGID -> %% player chat: disregard whatever was sent except modifiers and message.
{ok, User} = egs_user_model:read(UserGID), {ok, User} = egs_user_model:read(UserGID),
[16#00001200, User#egs_user_model.id, (User#egs_user_model.character)#characters.name]; [16#00001200, User#egs_user_model.id, (User#egs_user_model.character)#characters.name];