Minor fix from last commit.

This commit is contained in:
BeniS 2012-07-08 02:44:53 +12:00
부모 4453242bee
커밋 69cc53d7f3
2개의 변경된 파일10개의 추가작업 그리고 10개의 파일을 삭제

파일 보기

@ -94,7 +94,7 @@ local function onCreatureSpeak(name, level, speaktype, message, channelId, creat
if speaktype.private then if speaktype.private then
Console.addPrivateText(composedMessage, speaktype, name, false, name) Console.addPrivateText(composedMessage, speaktype, name, false, name)
if Options.getOption('showPrivateMessagesOnScreen') then if Options.getOption('showPrivateMessagesOnScreen') then
if(speakType.speakType ~= privateNpcToPlayer) then if(speaktype.speakType ~= SpeakPrivateNpcToPlayer) then
TextMessage.displayPrivate(name .. ':\n' .. message) TextMessage.displayPrivate(name .. ':\n' .. message)
end end
end end