From ac25a2578b1d151fb771db7b00bd84eae32b6dbe Mon Sep 17 00:00:00 2001 From: Gerkiz Date: Fri, 7 Apr 2023 01:34:02 +0200 Subject: [PATCH] Mtn v3 - highscore change and localization fix --- locale/en/mtn_fortress_v3.cfg | 4 ++++ maps/mountain_fortress_v3/core.lua | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/locale/en/mtn_fortress_v3.cfg b/locale/en/mtn_fortress_v3.cfg index 49b5ac38..6e920210 100644 --- a/locale/en/mtn_fortress_v3.cfg +++ b/locale/en/mtn_fortress_v3.cfg @@ -50,6 +50,8 @@ hide_minimap=Hide locomotive minimap! current_pickaxe_tier=The team currently has the __1__ pickaxe tier.\nBonus speed is: __2__% map_on=Automatically show map ON map_off=OFF +robotics_deployed=The locomotive defense is currently deployed. +robotics_standby=The locomotive defense is currently in standby-mode. [locomotive] upgrades=Upgrades: @@ -81,8 +83,10 @@ notify_full_inventory_2=Your inventory is full. Join the warrior club today! Pum new_items_at_market=New items have been unlocked at the locomotive market! discharge_unlocked=Discharge defense has now been unlocked at the market! artillery_unlocked=Artillery has now been unlocked at the market! +crafting_bonus=__1__ unlocked the last missing piece for the mystical chest!\n[color=yellow]Crafting speed bonus has been applied for 15 minutes![/color] mining_bonus=__1__ unlocked the last missing piece for the mystical chest!\n[color=yellow]Mining speed bonus has been applied for 15 minutes![/color] mining_bonus_end=Mining speed bonus has ended! +crafting_bonus_end=Crafting speed bonus has ended! movement_bonus=__1__ unlocked the last missing piece for the mystical chest!\n[color=yellow]Movement speed bonus has been applied for 15 minutes![/color] movement_bonus_end=Movement speed bonus has ended! coin_bonus=__1__ unlocked the last missing piece for the mystical chest!\n[color=yellow]Coins has been distributed![/color] diff --git a/maps/mountain_fortress_v3/core.lua b/maps/mountain_fortress_v3/core.lua index fbabdbfb..1129299d 100644 --- a/maps/mountain_fortress_v3/core.lua +++ b/maps/mountain_fortress_v3/core.lua @@ -12,7 +12,7 @@ Public.terrain = require 'maps.mountain_fortress_v3.terrain' Public.generate = require 'maps.mountain_fortress_v3.generate' Public.get_perlin = require 'maps.mountain_fortress_v3.get_perlin' Public.gui = require 'maps.mountain_fortress_v3.gui' --- Public.highscore = require 'maps.mountain_fortress_v3.highscore' +Public.highscore = require 'maps.mountain_fortress_v3.highscore' Public.locomotive = require 'maps.mountain_fortress_v3.locomotive' Public.loot = require 'maps.mountain_fortress_v3.loot' Public.mining = require 'maps.mountain_fortress_v3.mining'