Adjusting font for sex

This commit is contained in:
dazedanon 2026-01-19 12:20:55 -06:00
parent 6aecdce196
commit d9ae7a0a09
2 changed files with 8 additions and 7 deletions

View file

@ -1449,9 +1449,9 @@ Game_Interpreter.prototype.Menu_L1Sex_OpnView2 = function () {
this.SpriteStrR(PN_mSxSumTxt + 0, $gameVariables.value(VN_経験人数) + "人", 30, 381, 231 + (58 * 0), 0);
this.SpriteStrR(PN_mSxSumTxt + 1, $gameVariables.value(VN_絶頂人数) + "人", 30, 381, 231 + (58 * 1), 0);
this.SpriteStrR(PN_mSxSumTxt + 2, $gameVariables.value(VN_射精人数) + "人", 30, 381, 231 + (58 * 2), 0);
this.SpriteStr(PN_mSxIrnTxt + 1, $gameSystem.SexTxt[0], 25, 93, 584 + (32 * 0), 0);
this.SpriteStr(PN_mSxIrnTxt + 2, $gameSystem.SexTxt[1], 25, 93, 584 + (32 * 1), 0);
this.SpriteStr(PN_mSxIrnTxt + 3, $gameSystem.SexTxt[2], 25, 93, 584 + (32 * 2), 0);
this.SpriteStr(PN_mSxIrnTxt + 1, $gameSystem.SexTxt[0], 17, 93, 584 + (32 * 0), 0);
this.SpriteStr(PN_mSxIrnTxt + 2, $gameSystem.SexTxt[1], 17, 93, 584 + (32 * 1), 0);
this.SpriteStr(PN_mSxIrnTxt + 3, $gameSystem.SexTxt[2], 17, 93, 584 + (32 * 2), 0);
let _OCStr = "\\oc[rgba(255,255,255,1)]";
let _KaisuSize = 28;
let _KaisuYZure = -8;

View file

@ -371,11 +371,12 @@ Game_Interpreter.prototype.command101 = function() {
return false;
};
Game_Interpreter.prototype.isContinueMessageString = function() {
if (this.nextEventCode() === 101 && $gameSystem.messageRows() > 4) {
return true;
} else {
// Disabled auto-merge of consecutive messages when rows > 4
// if (this.nextEventCode() === 101 && $gameSystem.messageRows() > 4) {
// return true;
// } else {
return this.nextEventCode() === 401;
}
// }
};
Yanfly.Message.Window_Base_resetFontSettings =
Window_Base.prototype.resetFontSettings;