From dbe79dcdfd9e671de19de290bf00392faa44a089 Mon Sep 17 00:00:00 2001 From: Gerkiz Date: Tue, 5 Apr 2022 19:39:01 +0200 Subject: [PATCH] minor change --- locale/en/mtn_fortress_v3.cfg | 2 +- maps/mountain_fortress_v3/locomotive/friendly_pet.lua | 2 +- maps/mountain_fortress_v3/locomotive/market.lua | 11 ++++++++--- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/locale/en/mtn_fortress_v3.cfg b/locale/en/mtn_fortress_v3.cfg index 662e2985..07a960cf 100644 --- a/locale/en/mtn_fortress_v3.cfg +++ b/locale/en/mtn_fortress_v3.cfg @@ -51,7 +51,7 @@ map_off=OFF [locomotive] upgrades=Upgrades: items=Items: -shoo=^-^ Please don't shoo at me ^-^ +shoo=[Desync Bro] not_trusted=You need to be trusted to purchase this. coins_left=Coins left: __1__ market_name=Market diff --git a/maps/mountain_fortress_v3/locomotive/friendly_pet.lua b/maps/mountain_fortress_v3/locomotive/friendly_pet.lua index 4fb81377..e086f753 100644 --- a/maps/mountain_fortress_v3/locomotive/friendly_pet.lua +++ b/maps/mountain_fortress_v3/locomotive/friendly_pet.lua @@ -104,7 +104,7 @@ function Public.spawn_biter() target = this.locomotive_biter, target_offset = {0, -3.5}, scale = 1.05, - font = 'default-large-semibold', + font = 'heading-2', color = {r = 175, g = 75, b = 255}, alignment = 'center', scale_with_zoom = false diff --git a/maps/mountain_fortress_v3/locomotive/market.lua b/maps/mountain_fortress_v3/locomotive/market.lua index 6b821bfa..3fcecdd1 100644 --- a/maps/mountain_fortress_v3/locomotive/market.lua +++ b/maps/mountain_fortress_v3/locomotive/market.lua @@ -519,12 +519,14 @@ local function redraw_market_items(gui, player, search_text) return end - gui.add( + local upgrades_label = + gui.add( { type = 'label', caption = ({'locomotive.upgrades'}) } ) + upgrades_label.style.font = 'heading-2' local upgrade_table = gui.add({type = 'table', column_count = 6}) @@ -574,12 +576,14 @@ local function redraw_market_items(gui, player, search_text) ::continue:: end end - gui.add( + local items_label = + gui.add( { type = 'label', caption = ({'locomotive.items'}) } ) + items_label.style.font = 'heading-2' local slider_value = ceil(players[player.index].data.slider.slider_value) local items_table = gui.add({type = 'table', column_count = 6}) @@ -801,7 +805,8 @@ local function gui_opened(event) player.opened = frame local search_table = inside_table.add({type = 'table', column_count = 2}) - search_table.add({type = 'label', caption = ({'locomotive.search_text'})}) + local search_name = search_table.add({type = 'label', caption = ({'locomotive.search_text'})}) + search_name.style.font = 'heading-2' local search_text = search_table.add({type = 'textfield'}) search_text.style.width = 140