Kaynağa Gözat

Fix ArrayOutOfBounds exception. Thx Benurb :)

GodKratos 16 yıl önce
ebeveyn
işleme
7f71088b37

+ 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];