I tried this at line 927 but i need some help with the code
Code:
else if(weapon_item == NULL && SLOT_HANDS() == ItemAttribMagic){
dmg = 1;
How do I say that my SLOT_HANDS = a magic item?
Edit:
I also tried
Code:
else if(weapon_item == NULL && SLOT_HANDS()->Magic){
dmg = 1;
and that didnt work.