diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-19 16:28:24 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-19 16:28:24 +0000 |
commit | 2bb0a3ba3259bc2db64d080ad4d450d7d9b99f74 (patch) | |
tree | ecd21447049e571b94c2375e21c4a5ab61387d73 /npc/sample/monster_controller.txt | |
parent | e65bb67b4b56419f1bcc4fe0579b2ede42891879 (diff) | |
download | hercules-2bb0a3ba3259bc2db64d080ad4d450d7d9b99f74.tar.gz hercules-2bb0a3ba3259bc2db64d080ad4d450d7d9b99f74.tar.bz2 hercules-2bb0a3ba3259bc2db64d080ad4d450d7d9b99f74.tar.xz hercules-2bb0a3ba3259bc2db64d080ad4d450d7d9b99f74.zip |
Set proper limits to drop rates to prevent integer overflow.
Minor details cleanup.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11043 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/monster_controller.txt')
-rw-r--r-- | npc/sample/monster_controller.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/sample/monster_controller.txt b/npc/sample/monster_controller.txt index 4a8f7211c..a5f84776d 100644 --- a/npc/sample/monster_controller.txt +++ b/npc/sample/monster_controller.txt @@ -144,7 +144,7 @@ L_MainMenu: } L_AttackMenu: - switch(select("Walk","Follow","Attack","Stop","Defend","Talk","Emote","Random Walk","Callback","Back","Sit")){ + switch(select("Walk","Follow","Attack","Stop","Defend","Talk","Emote","Random Walk","Callback","Back")){ case 1: // Walk set .@src, make_menu(); input .@x; |