diff options
| author | teacher <none@none> | 2010-03-22 15:08:11 +0100 |
|---|---|---|
| committer | teacher <none@none> | 2010-03-22 15:08:11 +0100 |
| commit | 3b7677d36430d230bfdac89a879e9b0b31837de4 (patch) | |
| tree | 7c95e6f20fa89eaaace835bd42b0c5985e0c9cb9 | |
| parent | 248286c08d5dc82675271f715bff4643aee4a880 (diff) | |
Restored UPDATE query in 7660_world_creature_template.sql.
Thank you Zor for bringing reason to my mind!
--HG--
branch : trunk
| -rw-r--r-- | sql/updates/7660_world_creature_template.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/updates/7660_world_creature_template.sql b/sql/updates/7660_world_creature_template.sql index a21be0dfb86..e987add88e9 100644 --- a/sql/updates/7660_world_creature_template.sql +++ b/sql/updates/7660_world_creature_template.sql @@ -1,2 +1,3 @@ ALTER TABLE creature_template ADD COLUMN speed_run float NOT NULL default '1.14286' COMMENT 'Result of 8.0/7.0, most common value' AFTER speed; +UPDATE creature_template SET speed=1 WHERE speed IS NULL; ALTER TABLE creature_template CHANGE COLUMN speed speed_walk FLOAT NOT NULL DEFAULT '1' COMMENT 'Result of 2.5/2.5, most common value'; |
