Quests rework.

This commit is contained in:
MobiusDev
2016-02-11 21:39:33 +00:00
parent b2cafd8e2e
commit 09976b0ce6
173 changed files with 6416 additions and 4720 deletions

View File

@ -829,9 +829,9 @@ final class RainbowSpringsChateau extends ClanHallSiegeEngine
private static boolean isValidPassage(String text)
{
for (String st : _textPassages)
for (String qs : _textPassages)
{
if (st.equalsIgnoreCase(text))
if (qs.equalsIgnoreCase(text))
{
return true;
}