瀏覽代碼

Fix ArrayOutOfBounds exception. Thx Benurb :)

GodKratos 16 年之前
父節點
當前提交
7f71088b37
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      L2_GameServer/java/net/sf/l2j/gameserver/datatables/ItemTable.java

+ 1 - 1
L2_GameServer/java/net/sf/l2j/gameserver/datatables/ItemTable.java

@@ -754,7 +754,7 @@ public class ItemTable
 	 */
 	public L2Item getTemplate(int id)
 	{
-		if (id > _allTemplates.length)
+		if (id >= _allTemplates.length)
 			return null;
 		else
 			return _allTemplates[id];