diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-23 10:47:10 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-23 10:47:10 -0400 |
commit | 9e540db7d6492168cadcafddbf145ffdd7b21981 (patch) | |
tree | 8019a7a67e66a5ec87ad7872278e8ee92431251a /src/systems/dialog.cpp | |
parent | 215e5ee6ce089c3e0d5be28fd816bc7031b6acab (diff) |
source cleanup; beginning of custom attacks
Diffstat (limited to 'src/systems/dialog.cpp')
-rw-r--r-- | src/systems/dialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp index 76c0f93..87327ca 100644 --- a/src/systems/dialog.cpp +++ b/src/systems/dialog.cpp @@ -51,7 +51,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) d.talking = true; if (d.index == 9999) { - UISystem::dialogBox(name.name, /*"", false,*/ randomDialog[d.rindex % randomDialog.size()]); + UISystem::dialogBox(name.name, randomDialog[d.rindex % randomDialog.size()]); UISystem::waitForDialog(); } else if (exml != nullptr) { while (exml->StrAttribute("name") != name.name) @@ -96,7 +96,7 @@ void DialogSystem::receive(const MouseClickEvent &mce) if (qname != nullptr && QuestSystem::finish(qname) == 0) { d.index = 9999; } else { - UISystem::dialogBox(name.name, /*"", false,*/ "Finish my quest u nug"); + UISystem::dialogBox(name.name, "Finish my quest u nug"); UISystem::waitForDialog(); return; } |