Noble Quest Part 2 (Q00242) problem with unicorn.

Issue #225 resolved
CostyKiller created an issue

There is a bug when you reach the point where you need to revive the fallen unicorn, quest var "cornerstones" doesn't reach value 4 never. I fixed it this way: Q00242 fix

diff --git a/dist/game/data/scripts/quests/Q00242_PossessorOfAPreciousSoul2/Q00242_PossessorOfAPreciousSoul2.java b/dist/game/data/scripts/quests/Q00242_PossessorOfAPreciousSoul2/Q00242_PossessorOfAPreciousSoul2.java
index c42a6c4..386b344 100644
--- a/dist/game/data/scripts/quests/Q00242_PossessorOfAPreciousSoul2/Q00242_PossessorOfAPreciousSoul2.java
+++ b/dist/game/data/scripts/quests/Q00242_PossessorOfAPreciousSoul2/Q00242_PossessorOfAPreciousSoul2.java
@@ -122,10 +122,11 @@
                {
                    st.takeItems(GOLDEN_HAIR, -1);
                    st.takeItems(SORCERY_INGREDIENT, -1);
                    st.set("awaitsDrops", "1");
                    st.setCond(9, true);
+                   st.set("cornerstones", "0");
                }
                break;
            case "PURE_UNICORN":
                npc.getSpawn().stopRespawn();
                npc.deleteMe();