Advertisement
Maliki79

MalSelfishSkillsBeta

Sep 4th, 2021
1,406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var selfishSkillTargetFF = Game_Action.prototype.targetsForFriends
  2. Game_Action.prototype.targetsForFriends = function() {
  3.     var unit = this.friendsUnit();
  4.     if(this.subject().isEnemy() && this.item().meta.selfishSkill) return [this.subject()];
  5.     return selfishSkillTargetFF.call(this);
  6. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement