I might've found a way but I'm not sure because I didn't test it.
First make a back-up of unmodified
RemtairyCombat.js
file before editing.
Then open
RemtairyCombat.js
with notepad and find this code block:
Code:
Window_ActorCommand.prototype.addBattleLogCommand = function() {
if(this._actor.isInWaitressServingPose()) {
if(Prison.cheatMode() && ConfigManager.cheatWaitressLog) {}
else if(!$gameTemp.isPlaytest() && !Prison.easyMode())
return;
}
this.addCommand(TextManager.battleLog, 'battleLog', true);
};
Delete
if{ }
block inside the function. It should look like this:
Code:
Window_ActorCommand.prototype.addBattleLogCommand = function() {
this.addCommand(TextManager.battleLog, 'battleLog', true);
};
Save and see if it works. If it didn't work restore original unmodified file.