- Reverted declaration of run_script to normal since it appears there's no longer any memory leaks related to it.

- Returned the MAX_PC_BONUS value to 10.


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8928 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex
2006-10-03 16:19:14 +00:00
parent 96d77e1cc8
commit 7c8ec5366e
5 changed files with 14 additions and 20 deletions

View File

@@ -63,8 +63,7 @@ struct script_state {
struct script_code* parse_script(unsigned char *,const char*,int);
void run_script_sub(struct script_code *rootscript,int pos,int rid,int oid, char* file, int lineno);
//void run_script(struct script_code*,int,int,int);
#define run_script(sc,pos,rid,oid) run_script_sub(sc,pos,rid,oid,__FILE__,__LINE__)
void run_script(struct script_code*,int,int,int);
int set_var(struct map_session_data *sd, char *name, void *val);
int conv_num(struct script_state *st,struct script_data *data);