Skip to content

fix(DB/creature_loot) - Durar's and Kathorn's Power Cell corrected drop rate to 100% #22203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions data/sql/updates/pending_db_world/1748186943.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Rune-Smith Durar - Durar\'s Power Cell
UPDATE creature_loot_template SET Chance=100 WHERE Entry=26409 AND Item=36857;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use backticks for table name and column values as shown in the SQL standards.

Since they changes you're making is the same for both, you can have them in 1 query.


-- Rune-Smith Kathorn - Kathorn\'s Power Cell
UPDATE creature_loot_template SET Chance=100 WHERE Entry=26410 AND Item=36858;
Loading