From fd5aa3cf52f7b236d75a66f38815aee5db906c78 Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Mon, 11 Nov 2024 18:54:39 +0000 Subject: [PATCH] chore: `ExquisiteGel` is no longer just a placeholder --- Content/Items/ExquisiteGel.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Content/Items/ExquisiteGel.cs b/Content/Items/ExquisiteGel.cs index 36f28c3..fb981d4 100644 --- a/Content/Items/ExquisiteGel.cs +++ b/Content/Items/ExquisiteGel.cs @@ -8,13 +8,11 @@ namespace Continuity.Content.Items { public override void SetDefaults() { - // Placeholder 'Royal Gel' item - Item.width = 1; - Item.height = 1; + Item.width = 26; + Item.height = 28; Item.maxStack = 999; Item.value = Item.buyPrice(silver: 2); Item.rare = ItemRarityID.Blue; } - } }