diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js
index d74dad1821932a213ecfb9e2b5f1a51b75fe6b2d..7588f17cf2e67c4e80fcf7b24fec50196df7d700 100644
--- a/src/player/js/PlayerState.js
+++ b/src/player/js/PlayerState.js
@@ -115,17 +115,16 @@ App.Entity.PlayerActionsCountersState = class {
 		this.slavesFathered = 0;
 		/** How many slaves you have knocked up. */
 		this.slavesKnockedUp = 0;
-		/** amount of cum given */
-		this.oral = 0;
 		/** amount of oral sex given */
-		this.vaginal = 0;
+		this.oral = 0;
 		/** amount of vaginal sex received */
-		this.anal = 0;
+		this.vaginal = 0;
 		/** amount of anal sex received */
-		this.mammary = 0;
+		this.anal = 0;
 		/** amount of mammary sex received */
-		this.penetrative = 0;
+		this.mammary = 0;
 		/** amount of dicking done */
+		this.penetrative = 0;
 	}
 };