From 265ee7b10968a5368f80ccb47f5b8b8ce5492d89 Mon Sep 17 00:00:00 2001 From: skotlex Date: Mon, 22 Jan 2007 15:10:15 +0000 Subject: - Removed sd->max_menu, sd->npc_menu is now reused to store what is the max number of valid entries and prevent clients from picking invalid options. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9690 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/script.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/map/script.c') diff --git a/src/map/script.c b/src/map/script.c index b4e484c44..03ff19973 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -4403,7 +4403,7 @@ int buildin_menu(struct script_state *st) if(buf[i] == ':') max++; } - sd->max_menu = max; + sd->npc_menu = max; //Reuse to store max menu entries. Avoids the need of an extra variable. clif_scriptmenu(sd,st->oid,buf); aFree(buf); } else if(sd->npc_menu==0xff){ // cancel @@ -10637,7 +10637,7 @@ int buildin_select(struct script_state *st) if(buf[i] == ':') max++; } - sd->max_menu = max; + sd->npc_menu = max; //Reuse to store max menu entries. Avoids the need of an extra variable. clif_scriptmenu(sd,st->oid,buf); aFree(buf); } else if(sd->npc_menu==0xff){ @@ -10683,7 +10683,7 @@ int buildin_prompt(struct script_state *st) if(buf[i] == ':') max++; } - sd->max_menu = max; + sd->npc_menu = max; //Reuse to store max menu entries. Avoids the need of an extra variable. clif_scriptmenu(sd,st->oid,buf); aFree(buf); } else { -- cgit v1.2.3-70-g09d2