Shouldn't this part:
have the test itr_kind != 14 && itr_kind != 8 inside? Or else itr_kind 8 (healing orb) could not hit invincible guys, and I checked, it can.
C-Code:
if ( invincible != 0 && itr_kind != 8 ) { if ( itr_kind != 14 ) goto Itr_Loop;//only itr_kind: 14 can attack the one being invincible //eg, you still be attacked by stone though you're invincible //hit_1 = hit; } |
have the test itr_kind != 14 && itr_kind != 8 inside? Or else itr_kind 8 (healing orb) could not hit invincible guys, and I checked, it can.