From c7483b38333f835c02998fcc1363af76b9608634 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 17 Feb 2020 21:26:38 -0500
Subject: [PATCH] add FS to name

---
 src/js/itemAvailability.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js
index af4eb1135a4..92eab6f58a5 100644
--- a/src/js/itemAvailability.js
+++ b/src/js/itemAvailability.js
@@ -236,6 +236,9 @@ window.isClothingAccessible = (function() {
 		const array = [];
 		db.forEach((i) => {
 			if (V.cheatMode || isAvailable(i)) {
+				if (i.fs) {
+					i.name = i.name + ` (FS)`;
+				}
 				array.push([i.name, i.value]);
 			}
 		});
-- 
GitLab