From 2fdcbf2a8d1dfba4207b485d0e6d10005c1eeb34 Mon Sep 17 00:00:00 2001
From: hexall90 <hexall90@gmail.com>
Date: Wed, 22 Nov 2017 08:04:04 +0100
Subject: [PATCH] adjustments

---
 TODO.txt                           | 8 +++++++-
 src/SecExp/weaponsManufacturing.tw | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/TODO.txt b/TODO.txt
index bca793be71f..4ffbc51e5bd 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -13,4 +13,10 @@ Events:
 -famous criminal escapes to the arcology, followed by another arcology police force
 
 Edicts:
--cyber enhancements for slave units
\ No newline at end of file
+-cyber enhancements for slave units
+
+Bugs:
+-sometimes troop counts breaks
+-sometimes rebel numbers have fractionary parts
+-growth stimulants can give height with fractionary parts
+-weap manufacturing is a mess as always
\ No newline at end of file
diff --git a/src/SecExp/weaponsManufacturing.tw b/src/SecExp/weaponsManufacturing.tw
index 318625af58c..c304259ad3f 100644
--- a/src/SecExp/weaponsManufacturing.tw
+++ b/src/SecExp/weaponsManufacturing.tw
@@ -68,7 +68,7 @@ You own $helots free menial slaves. This manufacturing complex can house 500 at
 		|
 		<<link "Transfer all free menial slaves">>
 			<<if $helots > 500 - $weapHelots>>
-				<<set $helots -= $weapHelots>>
+				<<set $helots -= 500 - $weapHelots>>
 				<<set $weapHelots = 500>>
 			<<else>>
 				<<set $weapHelots += $helots>>
-- 
GitLab