- Mar 7, 2020
- 712
- 709
In the strip club, if you want more patrons to enter the VIP dance, then make this change in RemtairyKarrynStripper.js:
Comment out the requirement for the patron to be excited, and don't forget to add the semicolon back in.
JavaScript:
Game_Troop.prototype.stripperBattle_validPatronsToInviteForVIP = function() {
return this.members().filter(function(member) {
return member.isAppeared() && !member.isDeathStateAffected() && member.enemyType() !== ENEMYTYPE_STRIPCLUB_OBS_TAG && !member.hasNoMoreEjaculationStockOrEnergy(); // && member._stripClub_isExcited;
});
};