public bool tick() { if (ToMoveTo != null) { CurrentTile.CurrentCharacter = null; CurrentTile.Walkable = true; ToMoveTo.CurrentCharacter = this; ToMoveTo = null; if (SpellReady) { ChooseSpell.refreshLocation(this); } return(true); } return(false); }
public void showChooseSpell() { ChooseSpell.refreshLocation(this); gameManager.addRangeToForm(ChooseSpell); SpellReady = true; }