diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-14 12:01:58 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-01-14 12:01:58 +0000 |
commit | f2f7c1838a3d05d9ecbea5a23e0b33f0f177e411 (patch) | |
tree | cecf60f23a1092f813742f188077d36614ed6972 /src/map | |
parent | 6aab03b220d3d65be71f56b4ff77ac4fa261571b (diff) | |
download | hercules-f2f7c1838a3d05d9ecbea5a23e0b33f0f177e411.tar.gz hercules-f2f7c1838a3d05d9ecbea5a23e0b33f0f177e411.tar.bz2 hercules-f2f7c1838a3d05d9ecbea5a23e0b33f0f177e411.tar.xz hercules-f2f7c1838a3d05d9ecbea5a23e0b33f0f177e411.zip |
Removed the hardcoded limit for numeric npc input boxes (bugreport:811)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12074 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/script.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/map/script.c b/src/map/script.c index f63be3fb5..b0c393afe 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -4667,15 +4667,9 @@ BUILDIN_FUNC(input) { // take received text/value and store it in the designated variable sd->state.menu_or_input = 0; if( postfix == '$' ) - { set_reg(st,sd,num,name,(void*)sd->npc_str,script_getref(st,2)); - } else - { - // limit the input to a non-negative value smaller than 'vending_max_value' (for scripts that didn't check this) - sd->npc_amount = cap_value(sd->npc_amount, 0, battle_config.vending_max_value); set_reg(st,sd,num,name,(void*)sd->npc_amount,script_getref(st,2)); - } } return 0; } |