From 602ed44020ef3e31b4de947fa2cd80295d564731 Mon Sep 17 00:00:00 2001 From: Manon Lefebvre Date: Fri, 13 Dec 2024 12:58:31 -0800 Subject: [PATCH] change skin names based on character creator's names for them. --- handbook/Equip/Skin.txt | 6 +++--- src/main/java/client/Character.java | 2 +- src/main/java/client/SkinColor.java | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/handbook/Equip/Skin.txt b/handbook/Equip/Skin.txt index 40c5e9055d..a1f80c8ec5 100644 --- a/handbook/Equip/Skin.txt +++ b/handbook/Equip/Skin.txt @@ -1,6 +1,6 @@ -0 - "Normal" - (no description) -1 - Dark - (no description) -2 - Black - (no description) +0 - Light - (no description) +1 - Tanned - (no description) +2 - Dark - (no description) 3 - Pale - (no description) 4 - Blue - (no description) 5 - Green - (no description) diff --git a/src/main/java/client/Character.java b/src/main/java/client/Character.java index 8a17639625..9a83c22f46 100644 --- a/src/main/java/client/Character.java +++ b/src/main/java/client/Character.java @@ -267,7 +267,7 @@ public class Character extends AbstractCharacterObject { private final Pet[] pets = new Pet[3]; private PlayerShop playerShop = null; private Shop shop = null; - private SkinColor skinColor = SkinColor.NORMAL; + private SkinColor skinColor = SkinColor.LIGHT; private Storage storage = null; private Trade trade = null; private MonsterBook monsterbook; diff --git a/src/main/java/client/SkinColor.java b/src/main/java/client/SkinColor.java index d64e9a83ce..07f9d59b65 100644 --- a/src/main/java/client/SkinColor.java +++ b/src/main/java/client/SkinColor.java @@ -22,9 +22,9 @@ package client; public enum SkinColor { - NORMAL(0), - DARK(1), - BLACK(2), + LIGHT(0), + TANNED(1), + DARK(2), PALE(3), BLUE(4), GREEN(5),