Maliki79

Mal_Elly_YF_SKLCDPatch

Jan 2nd, 2022 (edited)
1,157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //ver 1.1
  2. Mal_EllyBM_processTurn = BattleManager.processTurn;
  3. BattleManager.processTurn = function() {
  4.     Mal_EllyBM_processTurn.call(this);
  5.     if (BattleManager.isTickBased() && BattleManager.timeBasedCooldowns()) {
  6.       this._subject.updateCooldownTicks();
  7.       this._subject.updateWarmupTicks();
  8.     };
  9. };
  10.  
  11. Yanfly.SCD.Game_Battler_updateTick = Game_Battler.prototype.updateTick;
  12.   Game_Battler.prototype.updateTick = function() {
  13.     Yanfly.SCD.Game_Battler_updateTick.call(this);
  14.   };
Add Comment
Please, Sign In to add comment