diff --git a/src/js/SetBellySize.js b/src/js/SetBellySize.js
index 963e39484853c09f46297a41a58772c36f1af06c..657bd987bd790568386715dd8e0b09ab6cc8e16e 100644
--- a/src/js/SetBellySize.js
+++ b/src/js/SetBellySize.js
@@ -1,23 +1,23 @@
-/* eslint-disable no-undef */
 /** @param {App.Entity.SlaveState} slave */
 window.SetBellySize = function SetBellySize(slave) {
-
 	let _implantSize;
 	WombNormalizePreg(slave); /* now with support for legacy code that advances pregnancy by setting .preg++ */
 
-	if (slave.bellyImplant > 0)
+	if (slave.bellyImplant > 0) {
 		_implantSize = slave.bellyImplant;
-	else
+	} else {
 		_implantSize = 0;
+	}
 
-	if (slave.inflation === 3)
+	if (slave.inflation === 3) {
 		slave.bellyFluid = 10000;
-	else if (slave.inflation === 2)
+	} else if (slave.inflation === 2) {
 		slave.bellyFluid = 5000;
-	else if (slave.inflation === 1)
+	} else if (slave.inflation === 1) {
 		slave.bellyFluid = 2000;
-	else
+	} else {
 		slave.bellyFluid = 0;
+	}
 
 	slave.belly = slave.bellyPreg+slave.bellyFluid+_implantSize;
 };