aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMachiavelli <machiavelli.trinity@gmail.com>2011-02-22 23:47:28 +0100
committerMachiavelli <machiavelli.trinity@gmail.com>2011-02-22 23:47:28 +0100
commit918f1ce8ecae8d7d200cbd25d52bacba843c8f39 (patch)
tree2f602c7369ac670dc20feb87eaa2bc9b53d2258e /sql
parenta8f9936bea6d114de585ab393020c0324c075c8b (diff)
Core/Vehicles:
- Allow configurable TempSummonType and timer for vehicle_accessory table instead of hard coded values - Reimplement some earlier charted VehicleSeatFlagsB, that were temporarily removed because of VEHICLE_SEAT_FLAG_UNCONTROLLED (they now work in conjunction with eachother)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2011_02_22_4_world_vehicle_accessory.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/2011_02_22_4_world_vehicle_accessory.sql b/sql/updates/world/2011_02_22_4_world_vehicle_accessory.sql
new file mode 100644
index 00000000000..3d23f85c76a
--- /dev/null
+++ b/sql/updates/world/2011_02_22_4_world_vehicle_accessory.sql
@@ -0,0 +1,3 @@
+ALTER TABLE `vehicle_accessory`
+ADD `summontype` TINYINT(3) UNSIGNED NOT NULL DEFAULT 6 COMMENT "see enum TempSummonType",
+ADD `summontimer` INT(10) UNSIGNED NOT NULL DEFAULT 30000 COMMENT "timer, only relevant for certain summontypes";