diff --git a/src/facilities/nursery/nursery.tw b/src/facilities/nursery/nursery.tw index 55a031a0a9955242aaf34e07473cda0ef3712f98..305e33b4c8c0e96712b9fad2566252f4915faa3d 100644 --- a/src/facilities/nursery/nursery.tw +++ b/src/facilities/nursery/nursery.tw @@ -129,7 +129,7 @@ <div class="choices"> <<if _NL > 0>> - <<= removeFacilityWorkers("nursery", "rest", "rest")>> + <<includeDOM removeFacilityWorkers("nursery", "rest", "rest")>> <</if>> </div> diff --git a/src/js/assignJS.js b/src/js/assignJS.js index 1feba67f71ae861a82ea49b18aba50c298204118..ccebd077ad2f2243a6318f48694e720b75e917f4 100644 --- a/src/js/assignJS.js +++ b/src/js/assignJS.js @@ -931,15 +931,15 @@ globalThis.assignmentTransition = function(slave, assignTo, passage) { * @param {string} facilityName * @param {string} managerAssignment * @param {string} workerAssignment - * @returns {string} + * @returns {Node} */ globalThis.removeFacilityWorkers = function(facilityName, managerAssignment, workerAssignment) { const facility = App.Entity.facilities[facilityName]; const count = facility.totalEmployeesCount; - const array = []; + const frag = new DocumentFragment(); if (count > 0) { - array.push( - App.UI.link( + frag.append( + App.UI.DOM.link( "Remove all slaves", () => { App.Utils.moveFacilityWorkers(facility, managerAssignment, workerAssignment); @@ -950,8 +950,8 @@ globalThis.removeFacilityWorkers = function(facilityName, managerAssignment, wor ) ); if ((count + V.dormitoryPopulation) > V.dormitory) { - array.push(`<span class="red">Dormitory capacity will be exceeded.</span>`); + App.UI.DOM.appendNewElement("span", frag, ` Dormitory capacity will be exceeded.`, "red"); } } - return array.join(" "); + return frag; }; diff --git a/src/uncategorized/arcade.tw b/src/uncategorized/arcade.tw index 79d106b253378b79b3539e44cfcf9f22dddb6f63..d64d67cf085dd86e50bf947e4a5a8c016aada927 100644 --- a/src/uncategorized/arcade.tw +++ b/src/uncategorized/arcade.tw @@ -104,7 +104,7 @@ </div> <div class="choices"> <<if _AL > 0>> - <<=removeFacilityWorkers("arcade", "", "work a glory hole")>> + <<includeDOM removeFacilityWorkers("arcade", "", "work a glory hole")>> <</if>> </div> diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw index ecc658f13b40a3dd44dc6a2bfc6fb6dff82c25fa..becabde778b6da10d05e074db2107f05b73823f1 100644 --- a/src/uncategorized/brothel.tw +++ b/src/uncategorized/brothel.tw @@ -173,7 +173,7 @@ </div> <div class="choices"> <<if _BL > 0>> - <<= removeFacilityWorkers("brothel", "rest", "whore",)>> + <<includeDOM removeFacilityWorkers("brothel", "rest", "whore",)>> <</if>> </div> </div> diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw index 7dc373f2894a7035c9cb9cf43ef460bccc763e42..b43410d627008ae4c753e1c3fe005929202e1acc 100644 --- a/src/uncategorized/cellblock.tw +++ b/src/uncategorized/cellblock.tw @@ -84,7 +84,7 @@ </p> <<if _CL > 0>> - <<= removeFacilityWorkers("cellblock", "rest", "stay confined")>> + <<includeDOM removeFacilityWorkers("cellblock", "rest", "stay confined")>> <</if>> <div> <<set _Tmult0 = Math.trunc($cellblock*1000*$upgradeMultiplierArcology)>> diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw index 2f179502e407076d80bd03f8deb0ad33415632f0..e01db18bbe022234c36b03ef14382aaf0eca724e 100644 --- a/src/uncategorized/clinic.tw +++ b/src/uncategorized/clinic.tw @@ -94,7 +94,7 @@ </div> <div class="choices"> <<if _CL > 0>> - <<= removeFacilityWorkers("clinic", "rest", "rest")>> + <<includeDOM removeFacilityWorkers("clinic", "rest", "rest")>> <</if>> </div> </div> diff --git a/src/uncategorized/club.tw b/src/uncategorized/club.tw index dad4b25d4ba7b4a9730891ec39a63f349215368a..5be3dcb382d28b46755ffd2017ebcf6689b6f644 100644 --- a/src/uncategorized/club.tw +++ b/src/uncategorized/club.tw @@ -236,7 +236,7 @@ </div> <div class="choices"> <<if _CL > 0>> - <<= removeFacilityWorkers("club", "rest", "serve the public")>> + <<includeDOM removeFacilityWorkers("club", "rest", "serve the public")>> <</if>> </div> </div> diff --git a/src/uncategorized/dairy.tw b/src/uncategorized/dairy.tw index 5fd03af26300934fc0356e5ad1c8440eb4533a7a..beb5d4bb9457b0e96844c12d1f1218eed4b05100 100644 --- a/src/uncategorized/dairy.tw +++ b/src/uncategorized/dairy.tw @@ -353,7 +353,7 @@ </div> <div class="choices"> <<if _DL > 0>> - <<= removeFacilityWorkers("dairy", "rest", "get milked")>> + <<includeDOM removeFacilityWorkers("dairy", "rest", "get milked")>> <</if>> </div> </div> diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw index 08027e52b9752bfaa5ee29efd0d53de03f6f7ae1..cdfa51eb437b8e1c558ff7163fca9c1c84039091 100644 --- a/src/uncategorized/masterSuite.tw +++ b/src/uncategorized/masterSuite.tw @@ -329,7 +329,7 @@ $masterSuiteNameCaps is furnished </div> <<if _MsL > 0>> - <<= removeFacilityWorkers("masterSuite", "rest", "please you")>> + <<includeDOM removeFacilityWorkers("masterSuite", "rest", "please you")>> <</if>> <<if $seePreg != 0>> diff --git a/src/uncategorized/schoolroom.tw b/src/uncategorized/schoolroom.tw index c70cb29d377dbe280aa89fbdf30ea5ccfc96e255..1c8bf929f93fe3bf84fcefab7779bdfe043932cf 100644 --- a/src/uncategorized/schoolroom.tw +++ b/src/uncategorized/schoolroom.tw @@ -94,7 +94,7 @@ </div> <div class="choices"> <<if _DL > 0>> - <<= removeFacilityWorkers("schoolroom", "rest", "take classes")>> + <<includeDOM removeFacilityWorkers("schoolroom", "rest", "take classes")>> <</if>> </div> diff --git a/src/uncategorized/servantsQuarters.tw b/src/uncategorized/servantsQuarters.tw index bd67b81a594a7d923d217eb277dfc2eca5cbb696..3c4025199986587b73564da4fa757a5865e76258 100644 --- a/src/uncategorized/servantsQuarters.tw +++ b/src/uncategorized/servantsQuarters.tw @@ -96,7 +96,7 @@ <div class="choices"> <<if _DL > 0>> - <<= removeFacilityWorkers("servantsQuarters", "rest", "be a servant")>> + <<includeDOM removeFacilityWorkers("servantsQuarters", "rest", "be a servant")>> <</if>> </div> </div> diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw index 5e5554c39e2bed9ab4cfd42202d4a75b20dd681f..1709621c55cb92629607b812c193eee1a003693f 100644 --- a/src/uncategorized/spa.tw +++ b/src/uncategorized/spa.tw @@ -103,7 +103,7 @@ </div> <div class="choices"> <<if _DL > 0>> - <<= removeFacilityWorkers("spa", "rest", "rest")>> + <<includeDOM removeFacilityWorkers("spa", "rest", "rest")>> <</if>> </div> </div>