Skip to content

Commit

Permalink
Merge pull request #488 from Shynixn/development
Browse files Browse the repository at this point in the history
Merge changes to master --release
  • Loading branch information
Shynixn authored Jan 27, 2024
2 parents 798fdbe + b4a9e2a commit a394fbe
Show file tree
Hide file tree
Showing 176 changed files with 1,682 additions and 4,806 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN ./gradlew build pluginJar --no-daemon
# 4. Launch a minecraft server with jdk17 and plugin
FROM amazoncorretto:17
# Change to the current plugin version present in build.gradle
ENV PLUGIN_VERSION=6.39.0
ENV PLUGIN_VERSION=6.40.0
# Change to the server version you want to test.
ENV SERVER_VERSION=spigot-1.18.jar
# Port of the Minecraft Server.
Expand Down
5 changes: 5 additions & 0 deletions blockball-api/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
dependencies {
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9")
implementation("com.github.shynixn.mcutils:common:1.0.41")
}

repositories {
maven("https://shynixn.github.io/m2/repository/mcutils")
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.github.shynixn.blockball.api.business.enumeration

enum class GameState {
/**
* State when the game is running.
*/
RUNNING,
/**
* State when the game is disabled.
*/
DISABLED,
/**
* State when the game is enabled but not running.
*/
JOINABLE
}
Loading

0 comments on commit a394fbe

Please sign in to comment.