diff options
| author | silinoron <none@none> | 2010-08-24 15:04:34 -0700 |
|---|---|---|
| committer | silinoron <none@none> | 2010-08-24 15:04:34 -0700 |
| commit | aaaeecc916cf567877fbf835fb9e805f5227e3f6 (patch) | |
| tree | 701d747297f9da0437237405f3a546020e3fbbb4 /sql/updates | |
| parent | c0dda8b492d073472f1a4de9641b882ac6b90211 (diff) | |
Add support for vehicle scaling based on item level.
Requires database data.
Fixes issue #2754
--HG--
branch : trunk
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/9578_world_vehicle_scaling_info.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/9578_world_vehicle_scaling_info.sql b/sql/updates/9578_world_vehicle_scaling_info.sql new file mode 100644 index 00000000000..88eabb88cb0 --- /dev/null +++ b/sql/updates/9578_world_vehicle_scaling_info.sql @@ -0,0 +1,7 @@ +DROP TABLE IF EXISTS `vehicle_scaling_info`; +CREATE TABLE `vehicle_scaling_info` ( + `entry` mediumint(8) unsigned NOT NULL default '0', + `baseItemLevel` float NOT NULL default '0', + `scalingFactor` float NOT NULL default '0', + PRIMARY KEY (`entry`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; |
