Skip to content

Commit

Permalink
change skin names based on character creator's names for them.
Browse files Browse the repository at this point in the history
  • Loading branch information
slimerrain committed Dec 13, 2024
1 parent 6f5f3f8 commit 602ed44
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions handbook/Equip/Skin.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/client/Character.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/client/SkinColor.java
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 602ed44

Please sign in to comment.