Hello,

I was wondering if anyone out there had altered dispel field to dispel both moongates which are linked, instead of only dispelling the moongate at the location where the dispel field is cast.
 
Go into DispelField.cs and add this ontop of item.Delete();

Code:
  if(((Moongate)item).PairedGate != null)
  ((Moongate)item).PairedGate.Delete();
 
Do you have an altered moongate script which defines PairedGate? Would you mind posting it?
 
Last edited:
Back