Переглянути джерело

- Added upgrade_svn5834.sql to update view for item type 10.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5834 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 19 роки тому
батько
коміт
c10891c7b9
2 змінених файлів з 6 додано та 0 видалено
  1. 5 0
      Changelog-Trunk.txt
  2. 1 0
      sql-files/upgrade_svn5834.sql

+ 5 - 0
Changelog-Trunk.txt

@@ -4,6 +4,11 @@ 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/04/01
+	* Added upgrade_svn5834.sql to update view for item type 10. Because of the
+	  ammo upgrade, all arrows need their view set to 1. This query does that to
+	  all type 10 items (this includes all ninja weapons as well, but a proper
+	  item_db.sql update is pending until the rest of throwables are updated)
+	  [Skotlex]
 	* Added structure view_data to handle sprite information for all characters
 	  (equipment, weapons, hair, dyes, etc). [Skotlex]
 	* Rewrote several clif functions to adapt to the new view_data class.

+ 1 - 0
sql-files/upgrade_svn5834.sql

@@ -0,0 +1 @@
+UPDATE `item_db` SET `view`=1 where `type` = 10;