Hi there!
Returning player and Admin here o/
When using chivalry spells all characters are disarming their weapons. Is this accurate? I remember chivalry not disarming weapons...
Also, using Magery is disarming the spellbook. I'm not sure, but I remember not disarming in the past.
Thanks in advance for any insight!
 
Scripts\Spells\Chivalry\PaladinSpell.cs
public override bool ClearHandsOnCast { get { return true; } }
change to
public override bool ClearHandsOnCast { get { return false; } }
 
Thanks mateys!
[doublepost=1524682329][/doublepost]Humm
It is changed by default...

public override bool ClearHandsOnCast { get { return false; } }
//public override int CastDelayBase{ get{ return 1; } }
 
It's the base one from repo. I haven't edited.
[doublepost=1527211951][/doublepost]By the way, what client should i be using? Just in case I'm missing something...
 

Attachments

  • PaladinSpell.cs
    3.5 KB · Views: 3
Back