mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:53:51 +00:00
[Server] Code style
This commit is contained in:
parent
44c549211e
commit
e85d0db771
1 changed files with 4 additions and 2 deletions
|
@ -114,9 +114,11 @@ void GUI::onGUIAction()
|
|||
auto mbox = std::move(guiQueue.front().first);
|
||||
auto callback = std::move(guiQueue.front().second);
|
||||
guiQueue.pop();
|
||||
if(!guiQueue.empty())
|
||||
|
||||
if (!guiQueue.empty())
|
||||
setChanged();
|
||||
if(player->guiMessageBox.id != mbox.id)
|
||||
|
||||
if (player->guiMessageBox.id != mbox.id)
|
||||
{
|
||||
LOG_MESSAGE_SIMPLE(Log::LOG_ERROR, "Wrong MessageBox id from %s(%d).", player->npc.mName, player->getId());
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue