-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
converted the system to use only the weight system from es_extended, …
…so now its not needed to change any file, now is just install and run.
- Loading branch information
Showing
2 changed files
with
8 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
ALTER TABLE `items` | ||
ADD COLUMN `limit` INT NULL DEFAULT 0 AFTER `label` | ||
; | ||
|
||
INSERT INTO `items` (name, label, `limit`) VALUES | ||
('weed', 'Weed (1G)', 420), | ||
('weed_pooch', 'Bag of weed (28G)', 15), | ||
INSERT INTO `items` (name, label, `weight`) VALUES | ||
('weed', 'Weed (1G)', 1), | ||
('weed_pooch', 'Bag of weed (28G)', 1), | ||
('coke', 'Coke (1G)', 420), | ||
('coke_pooch', 'Bag of coke (28G)', 15), | ||
('coke_pooch', 'Bag of coke (28G)', 1), | ||
('meth', 'Meth (1G)', 420), | ||
('meth_pooch', 'Bag of meth (28G)', 15), | ||
('meth_pooch', 'Bag of meth (28G)', 1), | ||
('opium', 'Opium (1G)', 420), | ||
('opium_pooch', 'Bag of opium (28G)', 15) | ||
('opium_pooch', 'Bag of opium (28G)', 1) | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters