From 1c83cfb8f6a8c86798ccb1be1eea57cdf53efccd Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Fri, 7 May 2021 20:59:00 -0400
Subject: [PATCH] comments

---
 js/003-data/slaveBody.js | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/js/003-data/slaveBody.js b/js/003-data/slaveBody.js
index 866ac4de1cf..e7ed84070d7 100644
--- a/js/003-data/slaveBody.js
+++ b/js/003-data/slaveBody.js
@@ -9,6 +9,7 @@
  * @type {Map.<String, bodyPart>}
  */
 App.Data.Slave.body = new Map([
+	// Head
 	["ears", {
 		category: "head",
 		requirements: (slave) => slave.earShape !== "none",
@@ -21,6 +22,8 @@ App.Data.Slave.body = new Map([
 	["neck", {
 		category: "head",
 	}],
+
+	// Torso
 	["chest", {
 		category: "torso",
 	}],
@@ -46,6 +49,8 @@ App.Data.Slave.body = new Map([
 		requirements: (slave) => hasAnyNaturalArms(slave),
 		isPair: true
 	}],
+
+	// Arms
 	["shoulder", {
 		category: "arms",
 		requirements: (slave) => hasAnyNaturalArms(slave),
@@ -71,6 +76,8 @@ App.Data.Slave.body = new Map([
 		requirements: (slave) => hasAnyNaturalArms(slave),
 		isPair: true
 	}],
+
+	// Legs
 	["buttock", {
 		category: "legs",
 		isPair: true
-- 
GitLab