mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-06 00:48:39 +01:00
DB: Rename .modify rep to .modify reputation (commands table) and fix a possible database startup error with conditions
This commit is contained in:
16
sql/updates/world/2012_05_20_00_world_misc.sql
Normal file
16
sql/updates/world/2012_05_20_00_world_misc.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- Update mod rep command name
|
||||
UPDATE `command` SET
|
||||
`name` = 'modify reputation',
|
||||
`help` = 'Syntax: .modify reputation #repId (#repvalue | $rankname [#delta])\nSets the selected players reputation with faction #repId to #repvalue or to $reprank.\nIf the reputation rank name is provided, the resulting reputation will be the lowest reputation for that rank plus the delta amount, if specified.\nYou can use \'.pinfo rep\' to list all known reputation ids, or use \'.lookup faction $name\' to locate a specific faction id.'
|
||||
WHERE `name` = 'modify rep';
|
||||
|
||||
-- Fix "2012-05-20 06:46:00 ERROR: SourceEntry 52264 in `condition` table, has incorrect SourceGroup 0 (spell effectMask) set , ignoring."
|
||||
UPDATE `conditions` SET
|
||||
`SourceGroup` = 1,
|
||||
`SourceId` = 0
|
||||
WHERE
|
||||
`SourceTypeOrReferenceId` = 13 AND
|
||||
`SourceEntry` = 52264 AND
|
||||
`ConditionTypeOrReference` = 29 AND
|
||||
`ConditionValue1` = 28653 AND
|
||||
`ConditionValue2` = 5;
|
||||
Reference in New Issue
Block a user