From 1925ce1a841f91db0c0cd8641aec588fac922b70 Mon Sep 17 00:00:00 2001 From: FyloZ Date: Wed, 10 Jun 2020 19:38:09 -0400 Subject: [PATCH] Updated Great Dune Wyrm's name --- Content/Decimation.cs | 2 +- Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs | 2 +- Content/Items/Vanity/DuneWyrm/DuneWyrmMask.cs | 2 +- Content/Tiles/DuneWyrmTrophy.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Content/Decimation.cs b/Content/Decimation.cs index 54a70ff..941ec04 100644 --- a/Content/Decimation.cs +++ b/Content/Decimation.cs @@ -96,7 +96,7 @@ namespace Decimation.Content { bossChecklist.Call("AddBossWithInfo", "The Bloodshot Eye", 2.5f, (Func) (() => DecimationWorld.downedBloodshotEye), "INSERT LATER"); - bossChecklist.Call("AddBossWithInfo", "The Dune Wyrm", 5.7f, + bossChecklist.Call("AddBossWithInfo", "The Great Dune Wyrm", 5.7f, (Func) (() => DecimationWorld.downedDuneWyrm), "INSERT LATER"); bossChecklist.Call("AddBossWithInfo", "Arachnus", 20f, (Func) (() => DecimationWorld.downedArachnus), "INSERT LATER"); diff --git a/Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs b/Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs index 9d0bf50..0ba5970 100644 --- a/Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs +++ b/Content/Items/Placeable/DuneWyrm/DuneWyrmTrophy.cs @@ -6,7 +6,7 @@ namespace Decimation.Content.Items.Placeable.DuneWyrm { internal class DuneWyrmTrophy : DecimationPlaceableItem { - protected override string ItemName => "Dune Wyrm Trophy"; + protected override string ItemName => "The Great Dune Wyrm Trophy"; protected override string ItemTooltip => "Achievement get!"; protected override int Tile => ModContent.TileType(); diff --git a/Content/Items/Vanity/DuneWyrm/DuneWyrmMask.cs b/Content/Items/Vanity/DuneWyrm/DuneWyrmMask.cs index 23c7f97..cd753f8 100644 --- a/Content/Items/Vanity/DuneWyrm/DuneWyrmMask.cs +++ b/Content/Items/Vanity/DuneWyrm/DuneWyrmMask.cs @@ -7,7 +7,7 @@ namespace Decimation.Content.Items.Vanity.DuneWyrm [AutoloadEquip(EquipType.Head)] internal class DuneWyrmMask : DecimationItem { - protected override string ItemName => "Ancient Dune Wyrm Mask"; + protected override string ItemName => "The Great Dune Wyrm Mask"; protected override string ItemTooltip => "A bit dusty"; protected override void Init() diff --git a/Content/Tiles/DuneWyrmTrophy.cs b/Content/Tiles/DuneWyrmTrophy.cs index 9a6d17e..8428c2e 100644 --- a/Content/Tiles/DuneWyrmTrophy.cs +++ b/Content/Tiles/DuneWyrmTrophy.cs @@ -17,7 +17,7 @@ namespace Decimation.Content.Tiles dustType = 7; disableSmartCursor = true; ModTranslation name = CreateMapEntryName(); - name.SetDefault("Dune Wyrm Trophy"); + name.SetDefault("The Great Dune Wyrm Trophy"); AddMapEntry(new Color(120, 85, 60), name); }