Skip to content

Commit

Permalink
New default values
Browse files Browse the repository at this point in the history
  • Loading branch information
NikitaCartes committed Nov 29, 2024
1 parent 3e769bd commit a6d265b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Works better when installed on both the server and the client


### Light level
- Open Eyeblossom: 12
- Open Eyeblossom in the pot: 14
- Closed Eyeblossom: 3
- Open Eyeblossom: 4
- Open Eyeblossom in the pot: 13
- Closed Eyeblossom: 1
- Closed Eyeblossom in the pot: 3

### Config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

@ConfigSerializable
public class MainConfigV1 extends ConfigTemplate {
public int openEyeblossomBrightness = 12;
public int closedEyeblossomBrightness = 3;
public int openEyeblossomFlowerpotBrightness = 14;
public int openEyeblossomBrightness = 4;
public int closedEyeblossomBrightness = 1;
public int openEyeblossomFlowerpotBrightness = 13;
public int closedEyeblossomFlowerpotBrightness = 3;

public String configVersion = "1";
Expand Down

0 comments on commit a6d265b

Please sign in to comment.