Fix double sending of chat messages

master
sapier 2014-03-23 19:15:38 +01:00
parent 936c6f577a
commit 5bd9c236d5
1 changed files with 1 additions and 1 deletions

View File

@ -2702,7 +2702,6 @@ bool GUIFormSpecMenu::OnEvent(const SEvent& event)
(s.fid == event.GUIEvent.Caller->getID()))
{
s.send = true;
acceptInput();
if(s.is_exit){
if (m_allowclose) {
acceptInput(quit_mode_accept);
@ -2712,6 +2711,7 @@ bool GUIFormSpecMenu::OnEvent(const SEvent& event)
}
return true;
}else{
acceptInput();
s.send = false;
return true;
}