Milleniumt
Member
- May 20, 2021
- 148
- 132
Can confirm this Works as I can see the History when playing the Bar Game while on Prisoner Mode.I might've found a way but I'm not sure because I didn't test it.
First make a back-up of unmodifiedRemtairyCombat.js
file before editing.
Then openRemtairyCombat.js
with notepad and find this code block:
DeleteCode: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); };
if{ }
block inside the function. It should look like this:
Save and see if it works. If it didn't work restore original unmodified file.Code:Window_ActorCommand.prototype.addBattleLogCommand = function() { this.addCommand(TextManager.battleLog, 'battleLog', true); };
So thank you for helping me and subsequently any other people who would have wanted this.