[MIRROR] Fix missing spaces in grocery console express messages [MDB IGNORE] (#19986)

* Fix missing spaces in grocery console express messages (#74104)

Separating your sentences with spaces is important, kids.

* Fix missing spaces in grocery console express messages

---------

Co-authored-by: Jack Edge <yellowbounder@gmail.com>
This commit is contained in:
SkyratBot
2023-03-20 03:46:31 +01:00
committed by GitHub
parent 50032b8a55
commit 5900ee60b5
@@ -167,7 +167,7 @@ GLOBAL_LIST_EMPTY(order_console_products)
return
var/say_message = "Thank you for your purchase!"
if(express_cost_multiplier > 1)
say_message += "Please note: The charge of this purchase and machine cooldown has been multiplied by [express_cost_multiplier]!"
say_message += " Please note: The charge of this purchase and machine cooldown has been multiplied by [express_cost_multiplier]!"
COOLDOWN_START(src, order_cooldown, cooldown_time * express_cost_multiplier)
say(say_message)
if(blackbox_key)
@@ -201,7 +201,7 @@ GLOBAL_LIST_EMPTY(order_console_products)
var/failure_message = "Sorry, but you do not have enough money."
if(express)
final_cost *= express_cost_multiplier
failure_message += "Remember, Express upcharges the cost!"
failure_message += " Remember, Express upcharges the cost!"
if(card.registered_account.adjust_money(-final_cost, "[name]: Purchase"))
return TRUE
say(failure_message)