From 0b5b0bfe8def6fd822e0cbabab5aec96a4e50606 Mon Sep 17 00:00:00 2001 From: skotlex Date: Fri, 22 Sep 2006 01:02:46 +0000 Subject: - Fixed a bug on "select" when skipping empty entries when the selected entry is the last. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8839 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/map/script.c b/src/map/script.c index 1d8436047..d8bbe4aa2 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -10220,7 +10220,7 @@ int buildin_select(struct script_state *st) st->state=END; } else { //Skip empty menu entries which weren't displayed on the client (Skotlex) - for(i=st->start+2;i<= (st->start+sd->npc_menu) && sd->npc_menu<(st->end-st->start);i++) { + for(i=st->start+2;i< (st->start+2+sd->npc_menu) && sd->npc_menu < (st->end-st->start-2);i++) { conv_str(st,& (st->stack->stack_data[i])); // we should convert variables to strings before access it [jA1983] [EoE] if((int)strlen(st->stack->stack_data[i].u.str) < 1) sd->npc_menu++; //Empty selection which wasn't displayed on the client. -- cgit v1.2.3-70-g09d2