diff options
| author | ilotterytea <iltsu@alright.party> | 2025-01-28 22:44:58 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-01-28 22:44:58 +0500 |
| commit | 835c2fdb6c1f1064ebb0eece8816cd4edfee3ec8 (patch) | |
| tree | 04e0dc3591329010b4bee7720cfe51612a494c72 /shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java | |
| parent | 76c0903ea857ff9bf31fe3cf75a3a41d3ee2ec06 (diff) | |
feat: set the server constants on connect
Diffstat (limited to 'shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java')
| -rw-r--r-- | shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java b/shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java index 06ca3b2..216a9d1 100644 --- a/shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java +++ b/shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java @@ -20,9 +20,9 @@ public class FrogarthaConstants { } public static class Player { - public static final float MAX_JUMP_STRENGTH = 1.5f; - public static final float MAX_JUMP_HEIGHT = 2f; - public static final float JUMP_SPEED = 10f; + public static float MAX_JUMP_STRENGTH = 1.5f; + public static float MAX_JUMP_HEIGHT = 2f; + public static float JUMP_SPEED = 10f; } public static class Room { @@ -30,7 +30,7 @@ public class FrogarthaConstants { } public static class Chat { - public static final int MAX_MESSAGE_LENGTH = 100; - public static final int MESSAGE_PER_MS = 500; + public static int MAX_MESSAGE_LENGTH = 100; + public static int MESSAGE_PER_MS = 500; } } |
