summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt5
-rw-r--r--sql-files/upgrade_svn5834.sql1
2 files changed, 6 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 5865fe80b..dc8c957f2 100644
--- a/Changelog-Trunk.txt
+++ b/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.
diff --git a/sql-files/upgrade_svn5834.sql b/sql-files/upgrade_svn5834.sql
new file mode 100644
index 000000000..2966b820e
--- /dev/null
+++ b/sql-files/upgrade_svn5834.sql
@@ -0,0 +1 @@
+UPDATE `item_db` SET `view`=1 where `type` = 10;