diff options
author | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-23 06:34:44 +0000 |
---|---|---|
committer | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-23 06:34:44 +0000 |
commit | 6139e002a09337acc34f8713f8d81d7e8aa63c79 (patch) | |
tree | 050c5cca848726d992c21be2cb042798cb4ca602 /npc/other | |
parent | e5b4f6c24c26412120af6545294925d8a24bd011 (diff) | |
download | hercules-6139e002a09337acc34f8713f8d81d7e8aa63c79.tar.gz hercules-6139e002a09337acc34f8713f8d81d7e8aa63c79.tar.bz2 hercules-6139e002a09337acc34f8713f8d81d7e8aa63c79.tar.xz hercules-6139e002a09337acc34f8713f8d81d7e8aa63c79.zip |
* Fixed an incorrect weight check in power arena (bugreport:1716)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12879 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r-- | npc/other/powernpc.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/other/powernpc.txt b/npc/other/powernpc.txt index 230ca6cd9..f9f9740ce 100644 --- a/npc/other/powernpc.txt +++ b/npc/other/powernpc.txt @@ -12,7 +12,7 @@ gonryun,180,118,4 script Iron man#gnp 85,{ - if (countitem(1201) > 0) { + if (checkweight(1201,1) == 0) { mes "- Wait a minute !! -"; mes "- Currently you're carrying -"; mes "- too many items with you. -"; |