11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
/*:
|
|
* @target MV
|
|
*/
|
|
(() => {
|
|
"use strict";
|
|
|
|
// 敗北時メッセージの削除
|
|
BattleManager.displayDefeatMessage = function () {
|
|
// $gameMessage.add(TextManager.defeat.format($gameParty.name()));
|
|
};
|
|
})();
|