瀏覽代碼

* jA1983 script.c buildin_menu fix. Thanks to End_of_exam.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6665 54d463be-8e91-2dee-dedb-b68131a5f0ec
Lance 19 年之前
父節點
當前提交
fdfaf7ba79
共有 2 個文件被更改,包括 2 次插入0 次删除
  1. 1 0
      Changelog-Trunk.txt
  2. 1 0
      src/map/script.c

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2006/05/19
+	* jA1983 script.c buildin_menu fix. Thanks to End_of_exam. [Lance]
 	* Abit of alterations to login-server. [Lance]
 2006/05/19
 	* Minor unsigned/signed alteration in pc_additem to shut the compiler up. [Lance]

+ 1 - 0
src/map/script.c

@@ -2810,6 +2810,7 @@ int buildin_menu(struct script_state *st)
 			//Skip empty menu entries which weren't displayed on the client (blackhole89)
 			for(i=st->start+2;i<=(st->start+sd->npc_menu*2) && sd->npc_menu<(st->end-st->start)/2;i+=2)
 			{
+				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.
 			}