diff --git a/src/Corporation/manageCorporation.tw b/src/Corporation/manageCorporation.tw index 81a3dd02baf89aa7108e4fa0f6dca33c0c1b4621..3ac259e971c36fcd0530ab2d7ca04967bb2da7d2 100644 --- a/src/Corporation/manageCorporation.tw +++ b/src/Corporation/manageCorporation.tw @@ -104,7 +104,7 @@ <<if $corp.Cash < _slaveSetCost>> <<continue>> <</if>> - <<= Seperator(_sepObj) >> + <<= Separator(_sepObj) >> <<= "[[" + _slaveNum.name + "|Manage Corporation]" + "[App.Corporate.buySlaves('"+_div.id+"', "+_slaveNum.count+")]" + "]">> @@ -141,7 +141,7 @@ <</if>> <<set _sepObj.need = false>> <<for _index, _slaveNum range _sendSlaveArray.filter(slaveNum => slaveNum.count <= _nextDiv.availableRoom && slaveNum.count <= _div.heldSlaves)>> - <<= Seperator(_sepObj)>> + <<= Separator(_sepObj)>> <<= "[[" + _slaveNum.name + "|Manage Corporation]" + "[App.Corporate.transferSlaves('"+_div.id+"', '"+_nextDiv.id+"', "+_slaveNum.count+")" + "]]">> @@ -161,7 +161,7 @@ <<set _sepObj.need = false>> <<for _index, _slaveNum range _sellSlaveArray.filter(slaveNum => _div.heldSlaves >= slaveNum.count)>> - <<= Seperator(_sepObj)>> + <<= Separator(_sepObj)>> <<= "[[" + _slaveNum.name + "|Manage Corporation]" + "[App.Corporate.sellSlaves('"+_div.id+"',"+_slaveNum.count+")]" + "]">> @@ -182,7 +182,7 @@ ]>> <<set _sepObj.need = false>> <<for _buySet range _buyDevArray.filter(buySet => App.Corporate.cash >= buySet.count * _depExpandCost)>> - <<= Seperator(_sepObj) >> + <<= Separator(_sepObj) >> <<= "[["+_buySet.name+"|Manage Corporation]" + "[App.Corporate.buyDevelopment('" + _div.id + "', " + _buySet.count + ")]" + "]">> @@ -195,7 +195,7 @@ { 'name': 'Downsize x10' , 'count':10} ]>> <<for _sellSet range _sellDevArray.filter(divNum => _div.developmentCount > divNum.count)>> - <<= Seperator(_sepObj) >> + <<= Separator(_sepObj) >> <<= "[["+_sellSet.name+"|Manage Corporation]" + "[App.Corporate.sellDevelopment('"+_div.id+"', "+_sellSet.count+")]" + "]">> @@ -271,14 +271,14 @@ The corporation is currently reserving <<= Math.trunc(_dividend * 100)>>% of its profit to be paid out as dividends. <<set _sepObj.need = false>> <<if _index > 0>> - <<= Seperator(_sepObj)>> + <<= Separator(_sepObj)>> <<= "[[Increase Ratio|Manage Corporation][App.Corporate.dividendRatio = " + _dividends[_index - 1] + "]]">> <</if>> <<if _nextIndex != _dividends.length>> - <<= Seperator(_sepObj)>> + <<= Separator(_sepObj)>> <<= "[[Reduce Ratio|Manage Corporation][App.Corporate.dividendRatio = " + _dividends[_nextIndex] + "]]">> <<else>> - <<= Seperator(_sepObj)>> + <<= Separator(_sepObj)>> <<= "[[None|Manage Corporation][App.Corporate.dividendRatio = 0]]">> <</if>> <<else>> diff --git a/src/gui/options/summaryOptions.tw b/src/gui/options/summaryOptions.tw index 9c079d55801ba4aedaed37a3247503a442dcf52e..5e360ba4f630ba9031e4be7813dfd9f71f5a7635 100644 --- a/src/gui/options/summaryOptions.tw +++ b/src/gui/options/summaryOptions.tw @@ -48,7 +48,7 @@ Sample summary: <<set _options = (new App.UI.OptionsGroup()).enableDoubleColumn()>> <<run _options.addOption("Panel style is", "slavePanelStyle") -.addValueList([["None", 0], ["Line Seperator", 1], ["Card", 2]])>> +.addValueList([["None", 0], ["Line Separator", 1], ["Card", 2]])>> <<run App.UI.SlaveSummary.addOptions(_options)>> diff --git a/src/js/utilsFC.js b/src/js/utilsFC.js index b05b79d2a10f51fd3058e54c5a1b3403406a967a..78e753189fa6a97d5c7ea1f6e0287a9ea01f108e 100644 --- a/src/js/utilsFC.js +++ b/src/js/utilsFC.js @@ -1130,11 +1130,11 @@ globalThis.onlyPlural = function(number, single, plural) { } return asPlural(single, plural); }; -globalThis.Seperator = function(seperatorObject) { - if (seperatorObject.need) { - return seperatorObject.text; +globalThis.Separator = function(SeparatorObject) { + if (SeparatorObject.need) { + return SeparatorObject.text; } - seperatorObject.need = true; + SeparatorObject.need = true; return ""; }; /**