diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/script.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index 7b13787ce..9ab5784c6 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -16811,48 +16811,63 @@ BUILDIN_FUNC(checkre) case 0: #ifdef RENEWAL script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; case 1: #ifdef RENEWAL_CAST script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; case 2: #ifdef RENEWAL_DROP script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; case 3: #ifdef RENEWAL_EXP script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; case 4: #ifdef RENEWAL_LVDMG script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; case 5: #ifdef RENEWAL_CAST_VMIN script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; case 6: #ifdef RENEWAL_EDP script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; case 7: #ifdef RENEWAL_ASPD script_pushint(st, 1); + #else + script_pushint(st, 0); #endif break; default: ShowWarning("buildin_checkre: unknown parameter.\n"); break; } - script_pushint(st, 0); return 0; } |