Kitzunu
Kitzunu
https://github.com/TrinityCore/TrinityCore/commit/fb388298a0bf76402a6f1de35bdfcb33223d51bb
utf8mb4_bin is supported by Maria too
https://github.com/azerothcore/azerothcore-wotlk/pull/16344

> param1 is the integer part, param2 is the decimal part Why not make it a float to use only 1 param? Edit: Becasue they are integers in the table,...
Correct. Hash/Commit should always be provided or the issue is deemed invalid.
I can actually confirm this on https://github.com/azerothcore/azerothcore-wotlk/commit/79b39f9655111088a741185c4dabd31dae7d85ea Killing the frog with a melee ability as a rogue will result in no loot Killing the frog with a ranged ability as...
Here's the issue. https://github.com/azerothcore/azerothcore-wotlk/blob/da6ff31056d46c046ab570bd335cd1e81242cd96/src/server/game/Entities/Unit/Unit.cpp#L17974 IsDamageEnoughForLootingAndReward() returns true. https://github.com/azerothcore/azerothcore-wotlk/blob/da6ff31056d46c046ab570bd335cd1e81242cd96/src/server/game/Entities/Player/PlayerStorage.cpp#L5644 IsDamageEnoughForLootingAndReward() returns false. https://github.com/azerothcore/azerothcore-wotlk/blob/da6ff31056d46c046ab570bd335cd1e81242cd96/src/server/game/Entities/Creature/Creature.cpp#L3706-L3709 Somewhere between the two checks above _playerDamageReq is changed to > 0 causing IsDamageEnoughForLootingAndReward() to return false. This...
``` Creature::LowerPlayerDamageReq first _playerDamageReq 6 Creature::LowerPlayerDamageReq second _playerDamageReq 0 Creature::LowerPlayerDamageReq first _playerDamageReq 0 CREATURE ENTRY 23979 . _playerDamageReq 0 . IS DAMAGE ENOUGH? true Unit::Kill isRewardAllowed TRUE Creature::ResetPlayerDamageReq _playerDamageReq 2...
Called from here https://github.com/azerothcore/azerothcore-wotlk/blob/6202835cff40a47658d14a15d6ebb33e2159b1a4/src/server/game/AI/CreatureAI.cpp#L309 But now the question is. Why the HELL isn't the creature classed as dead when killed by melee https://github.com/azerothcore/azerothcore-wotlk/blob/6202835cff40a47658d14a15d6ebb33e2159b1a4/src/server/game/AI/CreatureAI.cpp#L292-L297