Created
December 2, 2019 14:53
-
-
Save triacontane/b27d4e3e74157c187aa2bb721a0f5d4c to your computer and use it in GitHub Desktop.
戦闘開始メッセージを非表示
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
(function() { | |
'use strict'; | |
BattleManager.displayStartMessages = function() { | |
// $gameTroop.enemyNames().forEach(function(name) { | |
// $gameMessage.add(TextManager.emerge.format(name)); | |
// }); | |
if (this._preemptive) { | |
$gameMessage.add(TextManager.preemptive.format($gameParty.name())); | |
} else if (this._surprise) { | |
$gameMessage.add(TextManager.surprise.format($gameParty.name())); | |
} | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment