diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-08 17:13:39 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-08 17:13:39 +0000 |
commit | 01a1daae3343e0c993de83e7c38fab6a7f5bf5d4 (patch) | |
tree | 7e0e7ccec5596458330b2a87c7f7f9bb38c1bbda /sql-files/upgrade_svn7580.sql | |
parent | 89a113a0cf69be3a30d0c2999557ff21c2049d51 (diff) | |
download | hercules-01a1daae3343e0c993de83e7c38fab6a7f5bf5d4.tar.gz hercules-01a1daae3343e0c993de83e7c38fab6a7f5bf5d4.tar.bz2 hercules-01a1daae3343e0c993de83e7c38fab6a7f5bf5d4.tar.xz hercules-01a1daae3343e0c993de83e7c38fab6a7f5bf5d4.zip |
- Fixed the char table having party/guild_id as smallint when they need int there. Thanks to hermematon for pointing it out (use svn_ugprade7580.sql)
- Applied k3dt fixes to pet-hatching, ice-wall check, and wedding skills.
- Fixed endow skills calling the skill no damage packet twice.
- Fixed a crash on warpwaitingpc when the chat-room is empty.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7580 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'sql-files/upgrade_svn7580.sql')
-rw-r--r-- | sql-files/upgrade_svn7580.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql-files/upgrade_svn7580.sql b/sql-files/upgrade_svn7580.sql new file mode 100644 index 000000000..0df8894d0 --- /dev/null +++ b/sql-files/upgrade_svn7580.sql @@ -0,0 +1,2 @@ +ALTER TABLE `char` MODIFY `party_id` int(11) unsigned NOT NULL default '0';
+ALTER TABLE `char` MODIFY `guild_id` int(11) unsigned NOT NULL default '0';
|