Skip to content
Snippets Groups Projects
Commit 0acb89d9 authored by Anu's avatar Anu
Browse files

reCelebrityDebt: explicitly clamp .face, hard set .faceImplant

parent a1db8d57
No related branches found
No related tags found
1 merge request!11622reCelebrityDebt refinements
...@@ -81,8 +81,8 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App ...@@ -81,8 +81,8 @@ App.Events.RECelebrityAddictionDebt = class RECelebrityAddictionDebt extends App
if (slave.actualAge >= 16 && slave.face <= 80) { if (slave.actualAge >= 16 && slave.face <= 80) {
const plasticSurgeries = random(0, Math.floor((100 - slave.face) / 20)); const plasticSurgeries = random(0, Math.floor((100 - slave.face) / 20));
if (plasticSurgeries > 0) { if (plasticSurgeries > 0) {
slave.face += 20 * plasticSurgeries; slave.face = Math.min(slave.face + (20 * plasticSurgeries), 100);
slave.faceImplant += either(5, 10, 15, 20) * plasticSurgeries; slave.faceImplant = either(5, 10, 15, 20) * plasticSurgeries;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment