Created
December 21, 2021 14:29
-
-
Save triacontane/cbc04b22b6c618c6bca9834f741cc7d8 to your computer and use it in GitHub Desktop.
MPのポップアップを無効化
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*: | |
| * @plugindesc MPのポップアップを無効化 | |
| * @target MZ | |
| */ | |
| (()=> { | |
| Game_Battler.prototype.shouldPopupDamage = function() { | |
| const result = this._result; | |
| return ( | |
| result.missed || | |
| result.evaded || | |
| result.hpAffected | |
| ); | |
| }; | |
| })(); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MPのポップアップを無効にします。
MITライセンスで使用可能