diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2023-04-05 09:52:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 09:52:09 +0200 |
commit | afc6b9c1b805348ac727b21365a016f0366417de (patch) | |
tree | 614415db724fe1f92deb1d9bf04f5e35b576e0f4 /sql | |
parent | e58d23cc4e6124775f7fa9c149fab6d90220932b (diff) |
DB/Creature: Zorbo the Advisor shoud also give some reputation
closes #28742 by @CraftedRO
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2023_04_05_06_world.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2023_04_05_06_world.sql b/sql/updates/world/3.3.5/2023_04_05_06_world.sql new file mode 100644 index 00000000000..015d1035ff8 --- /dev/null +++ b/sql/updates/world/3.3.5/2023_04_05_06_world.sql @@ -0,0 +1,4 @@ +-- Zorbo the Advisor Reputation +DELETE FROM `creature_onkill_reputation` WHERE `creature_id` = 18413; +INSERT INTO `creature_onkill_reputation` (`creature_id`, `RewOnKillRepFaction1`, `RewOnKillRepFaction2`, `MaxStanding1`, `IsTeamAward1`, `RewOnKillRepValue1`, `MaxStanding2`, `IsTeamAward2`, `RewOnKillRepValue2`, `TeamDependent`) VALUES +(18413, 978, 941, 7, 0, 10, 7, 0, 10, 1); |