In the latest TrinityCore Eluna You might face error in :
Transmogrification.cpp :
SubClass == ITEM_SUBCLASS_WEAPON_FIST ||
All you have to do is to change it to :
SubClass == ITEM_SUBCLASS_WEAPON_FIST_WEAPON ||
and error will be fixed also when applying you might want to use this git command :
git apply transmog.diff --rej
So than you can check if there is any errors by searching .rej files and apply them manually.
34 Views