Skip to content

Commit

Permalink
feat: 1.20.4, more games per server
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakShearman committed Mar 3, 2024
1 parent 503ad16 commit c926092
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ FROM --platform=$TARGETPLATFORM eclipse-temurin:21-jre-alpine
RUN mkdir /app
WORKDIR /app

# Download wget
RUN #apk add --no-cache wget

COPY build/libs/*-all.jar /app/minesweeper.jar

ENTRYPOINT ["java"]
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}

dependencies {
implementation("dev.emortal.minestom:game-sdk:7be8f79")
implementation("dev.emortal.minestom:game-sdk:8ef77c3")
}

java {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/java/dev/emortal/minestom/minesweeper/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public final class Main {
private static final int MIN_PLAYERS = 1;
private static final int MAX_GAMES = 5;
private static final int MAX_GAMES = 10;

public static void main(String[] args) {
MineIndicatorLoader.loadAll();
Expand Down

0 comments on commit c926092

Please sign in to comment.