fix:修复跳过剧情功能this指向导致的bug

This commit is contained in:
ShakeFlower 2025-05-15 11:14:19 +08:00
parent 72b41bb416
commit 83c144764b

View File

@ -4028,14 +4028,14 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 =
} }
const perform = { const perform = {
jumpBlock: maps.prototype.jumpBlock, jumpBlock: maps.prototype.jumpBlock.bind(maps.prototype),
jumpHero: events.prototype.jumpHero, jumpHero: events.prototype.jumpHero.bind(events.prototype),
moveBlock: maps.prototype.moveBlock, moveBlock: maps.prototype.moveBlock.bind(maps.prototype),
drawAnimate: maps.prototype.drawAnimate, drawAnimate: maps.prototype.drawAnimate.bind(maps.prototype),
drawHeroAnimate: maps.prototype.drawHeroAnimate, drawHeroAnimate: maps.prototype.drawHeroAnimate.bind(maps.prototype),
vibrate: events.prototype.vibrate, vibrate: events.prototype.vibrate.bind(events.prototype),
_action_sleep: events.prototype._action_sleep, _action_sleep: events.prototype._action_sleep.bind(events.prototype),
__action_checkReplaying: events.prototype.__action_checkReplaying, __action_checkReplaying: events.prototype.__action_checkReplaying.bind(events.prototype),
}; };
function instantMove(fromX, fromY, aimX, aimY, keep, callback) { function instantMove(fromX, fromY, aimX, aimY, keep, callback) {