diff --git a/feast.html b/feast.html
index a27cb72..caf14f2 100644
--- a/feast.html
+++ b/feast.html
@@ -48,8 +48,11 @@
Blood Sugar: 235
Daylight: Empty
Sonhearst: River
- Candy Corn: 3
+ Candy Corn: 3
Emotions: 35/100
+ Sick Burn: 85/100
+ Nerves: 22/55
+ Fractal Prospectus: 99/100
diff --git a/feast.js b/feast.js
index dd504e7..ef55827 100644
--- a/feast.js
+++ b/feast.js
@@ -257,12 +257,12 @@ function updateDisplay() {
document.getElementById("stat-str").innerHTML = "Str: " + player.str;
document.getElementById("stat-dex").innerHTML = "Dex: " + player.dex;
document.getElementById("stat-con").innerHTML = "Con: " + player.con;
- document.getElementById("stat-fullness").innerHTML = "Stomach: " + round(player.stomach.fullness(),0) + "/" + player.stomach.capacity;
- if (player.prefs.scat) {
- document.getElementById("stat-bowels").innerHTML = "Bowels: " + round(player.bowels.fullness(),0) + "/" + player.bowels.capacity;
- } else {
- document.getElementById("stat-bowels").innerHTML = "";
- }
+ document.getElementById("stat-stomach").innerHTML = "Stomach: " + round(player.stomach.fullness(),0) + "/" + player.stomach.capacity
+ document.getElementById("stat-bowels").innerHTML = "Bowels: " + round(player.bowels.fullness(),0) + "/" + player.bowels.capacity;
+ document.getElementById("stat-balls").innerHTML = "Balls: " + round(player.balls.fullness(),0) + "/" + player.balls.capacity;
+ document.getElementById("stat-womb").innerHTML = "Womb: " + round(player.womb.fullness(),0) + "/" + player.womb.capacity;
+ document.getElementById("stat-breasts").innerHTML = "Breasts: " + round(player.breasts.fullness(),0) + "/" + player.breasts.capacity;
+
}
function advanceTimeTo(newTime) {