Skip to content

Commit

Permalink
Convert to RED instead of WHITE due to texture
Browse files Browse the repository at this point in the history
  • Loading branch information
Litorom committed Aug 29, 2024
1 parent 4e75a1a commit 9e2e579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/java/minicraft/entity/furniture/Bed.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class Bed extends Furniture {
/**
* Creates a new furniture with the name Bed and the bed sprite and color.
*/
public Bed() { this(DyeItem.DyeColor.WHITE); }
public Bed() { this(DyeItem.DyeColor.RED); }
public Bed(DyeItem.DyeColor color) {
super(MyUtils.capitalizeFully(color.toString().replace('_', ' ')) + " Bed", sprites.get(color), itemSprites.get(color), 3, 2);
this.color = color;
Expand Down

0 comments on commit 9e2e579

Please sign in to comment.