diff options
-rw-r--r-- | npc/001-1_Tulimshar/luca.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/001-1_Tulimshar/luca.txt b/npc/001-1_Tulimshar/luca.txt index e62ea576..1f574288 100644 --- a/npc/001-1_Tulimshar/luca.txt +++ b/npc/001-1_Tulimshar/luca.txt @@ -362,9 +362,6 @@ L_unfocus_menu: next; mes "\"What focus would you like to unfocus?\""; - if (countitem("DementiaPotion") == 0) goto L_nopotion; - delitem "DementiaPotion", 1; - getactivatedpoolskilllist; set @skilllist_id[@skilllist_count], 0; @@ -382,6 +379,9 @@ L_unfocus_menu: set @menu, @menu - 1; if (@skilllist_id[@menu] == 0) goto L_teachmore2; + + if (countitem("DementiaPotion") == 0) goto L_nopotion; + delitem "DementiaPotion", 1; unpoolskill @skilllist_id[@menu]; close; |