From 85d04b3cfbcddf492a48786d1c6c2d0b74dfdbe8 Mon Sep 17 00:00:00 2001 From: brianluau Date: Sun, 26 Dec 2010 22:22:04 +0000 Subject: [PATCH] - Added missing script_pushint() in 'checkweight' that were forgotten in r14629. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14631 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/script.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/map/script.c b/src/map/script.c index 773f8d6c48..59a9b54484 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -5411,6 +5411,7 @@ BUILDIN_FUNC(checkweight) if( id == NULL ) { ShowError("buildin_checkweight: Invalid item '%s'.\n", script_getstr(st,2)); // returns string, regardless of what it was + script_pushint(st,0); return 1; } @@ -5420,6 +5421,7 @@ BUILDIN_FUNC(checkweight) if( amount < 1 ) { ShowError("buildin_checkweight: Invalid amount '%d'.\n", amount); + script_pushint(st,0); return 1; } @@ -5461,6 +5463,7 @@ BUILDIN_FUNC(checkweight) return 0; } + script_pushint(st,1); return 0; }