From 6ba42147faa371ad1deb93a7c310e0467f5d60ef Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 29 Nov 2020 23:08:48 -0500 Subject: [PATCH] fix mislabled player coutners --- src/player/js/PlayerState.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js index 225cf3abfd9..cd477ab4150 100644 --- a/src/player/js/PlayerState.js +++ b/src/player/js/PlayerState.js @@ -92,19 +92,19 @@ App.Entity.PlayerActionsCountersState = class { this.birthDegenerate = 0; /** how many whoring babies you've had */ this.birthClient = 0; - /** untracked births */ + /** how many children you've carried for other arc owners */ this.birthArcOwner = 0; /** how many children you've had by sex with citizens (not whoring) */ this.birthCitizen = 0; - /** how many times you've giving birth to your own selfcest babies */ + /** how many children you've had with the Sisters */ this.birthFutaSis = 0; - /** how many units of your cum are stored away for artificially inseminating slaves */ + /** how many times you've giving birth to your own selfcest babies */ this.birthSelf = 0; /** how many designer babies you've produced */ this.birthLab = 0; - /** how many children you've had with the Sisters */ + /** untracked births */ this.birthOther = 0; - /** how many children you've carried for other arc owners */ + /** how many units of your cum are stored away for artificially inseminating slaves */ this.storedCum = 0; /** shared variables */ /** amount of milk given */ -- GitLab