db error
Build (Windows x64) / build (push) Canceled after 0s
Build (Windows x64) / linux-build (push) Canceled after 0s

This commit is contained in:
luis
2026-08-23 01:47:11 -03:00
parent e5e1c6eede
commit 1274a0f657
2 changed files with 10 additions and 1 deletions
@@ -6,7 +6,7 @@ SET `ContentTuningID`=4306,
WHERE `Entry`=245027 AND `DifficultyID`=0; WHERE `Entry`=245027 AND `DifficultyID`=0;
UPDATE `creature_template` UPDATE `creature_template`
SET `unit_flags`=33536 SET `unit_flags`=0
WHERE `entry`=245027; WHERE `entry`=245027;
-- Win'sa (Food Vendor) - npcflag 129 = gossip + vendor -- Win'sa (Food Vendor) - npcflag 129 = gossip + vendor
@@ -0,0 +1,9 @@
-- Fix curHealthPct issues for creatures with 100% health but enabled regeneration
-- When curHealthPct is 100 and regeneration is enabled, the field should be NULL
UPDATE `creature` SET `curHealthPct` = NULL WHERE `guid` IN (
730163, 730164, 730165, 730166, 730167, 730168, 730169, 730170, 730171, 730172,
730173, 730174, 730175, 730176, 730177, 730178, 730179, 730180, 730181, 730182,
730183, 730184, 730185, 730186, 730187, 730188, 730189, 730190, 730191, 730192,
730193, 730194, 730195, 730196, 730197, 730198, 730199, 730200, 730201
);