diff options
Diffstat (limited to 'world/map/npc/items')
-rw-r--r-- | world/map/npc/items/require_stat.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/items/require_stat.txt b/world/map/npc/items/require_stat.txt index e1d6306f..87fd9d72 100644 --- a/world/map/npc/items/require_stat.txt +++ b/world/map/npc/items/require_stat.txt @@ -21,7 +21,7 @@ function|script|RequireStat|{ if (@bStat$ == "Luk") set @bStatVal, readParam(bLuk); if (@bStatVal >= @minbStatVal) return; - message strcharinfo(0), "You do not see how to use this item properly."; - unequipbyid @slotId; + // If the requirement isn't met, then we end the script. + // Hence, subsequent item modifiers won't be applied. end; } |