From 0e32c7d47503c4cee7eaf59a40ff973757ceeb7c Mon Sep 17 00:00:00 2001 From: blubFisch Date: Fri, 7 Oct 2022 08:55:25 +0100 Subject: [PATCH] Rebrand to "PvP Shield" --- maps/scrap_towny_ffa/exclusion_zone.lua | 2 +- maps/scrap_towny_ffa/town_center.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/maps/scrap_towny_ffa/exclusion_zone.lua b/maps/scrap_towny_ffa/exclusion_zone.lua index 9dc3d8eb..ae1cbda3 100644 --- a/maps/scrap_towny_ffa/exclusion_zone.lua +++ b/maps/scrap_towny_ffa/exclusion_zone.lua @@ -49,7 +49,7 @@ function Public.remove_zone(zone) remove_drawn_borders(zone) this.exclusion_zones[zone.force.name] = nil - zone.force.print("Your protection zone has expired") + zone.force.print("Your PvP Shield has expired", {r = 1, g = 0, b = 0}) end local function vector_norm(vector) diff --git a/maps/scrap_towny_ffa/town_center.lua b/maps/scrap_towny_ffa/town_center.lua index a1f8ba11..3bfe3528 100644 --- a/maps/scrap_towny_ffa/town_center.lua +++ b/maps/scrap_towny_ffa/town_center.lua @@ -374,7 +374,7 @@ local function update_protection_display() local zone = this.exclusion_zones[town_center.market.force.name] local info if zone then - info = 'Protection: ' .. string.format("%.0f", (zone.lifetime_end - game.tick) / 60 / 60) .. ' minutes' + info = 'PvP Shield: ' .. string.format("%.0f", (zone.lifetime_end - game.tick) / 60 / 60) .. ' minutes' else info = '' end @@ -529,7 +529,7 @@ local function found_town(event) } town_center.zone_text = rendering.draw_text { - text = 'Town protection: (..)', + text = 'PvP Shield: (..)', surface = surface, forces = {force_name}, target = town_center.market,