mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
Merge pull request #549 from KinglyKrab/master
Fixed quantity in merchant purchase.
This commit is contained in:
@@ -352,6 +352,7 @@
|
||||
9096|2016_03_05_secondary_recall.sql|SHOW COLUMNS FROM `character_bind` LIKE 'slot'|empty|
|
||||
9097|2016_07_03_npc_class_as_last_name.sql|SELECT `rule_name` FROM `rule_values` WHERE `rule_name` LIKE 'NPC:UseClassAsLastName'|empty|
|
||||
9098|2016_08_26_object_size_tilt.sql|SHOW COLUMNS FROM `object` LIKE 'size'|empty|
|
||||
9099|2016_08_27_ip_exemptions.sql|SHOW TABLES LIKE 'ip_exemptions'|empty|
|
||||
|
||||
# Upgrade conditions:
|
||||
# This won't be needed after this system is implemented, but it is used database that are not
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
-- IP Exemptions table structure
|
||||
DROP TABLE IF EXISTS `ip_exemptions`;
|
||||
CREATE TABLE `ip_exemptions` (
|
||||
`exemption_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`exemption_ip` varchar(255) DEFAULT NULL,
|
||||
`exemption_amount` int(11) DEFAULT NULL,
|
||||
PRIMARY KEY (`exemption_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
|
||||
|
||||
-- Rule Value Entry, Default to false
|
||||
INSERT INTO `rule_values` (`ruleset_id`, `rule_name`, `rule_value`, `notes`) VALUES ('1', 'World:EnableIPExemptions', 'true', 'notation');
|
||||
|
||||
-- Logging Category Entry
|
||||
INSERT INTO `logsys_categories` (`log_category_id`, `log_category_description`, `log_to_console`, `log_to_file`, `log_to_gmsay`) VALUES ('44', 'Client Login', '1', '1', '1');
|
||||
Reference in New Issue
Block a user