Skip to content

Commit

Permalink
Updated to minigamesbox 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigerpanzer_02 committed Dec 31, 2023
1 parent 4fee62c commit 1fb31a2
Show file tree
Hide file tree
Showing 15 changed files with 544 additions and 573 deletions.
4 changes: 4 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.0.4 Release (31.12.2024)
* Moved kits.yml to own /kits files
* Updated to minigamesbox 1.3.4

### 2.0.3 Release (04.12.2023)
* Fixed block breakage on bridge
* Fixed blindness after choosing base if arena border isn't inside spawn
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("plugily.projects:MiniGamesBox-Classic:1.3.3") { isTransitive = false }
implementation("plugily.projects:MiniGamesBox-Classic:1.3.4") { isTransitive = false }
compileOnly("org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT")
compileOnly("org.jetbrains:annotations:24.0.1")
Expand Down
12 changes: 11 additions & 1 deletion src/main/java/plugily/projects/thebridge/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,17 @@ public void initializePluginClasses() {
public void addKits() {
long start = System.currentTimeMillis();
getDebugger().debug("Adding kits...");
addFileName("kits");
addFileName("kits/archer");
addFileName("kits/bridge");
addFileName("kits/hardcore");
addFileName("kits/healer");
addFileName("kits/heavytank");
addFileName("kits/knight");
addFileName("kits/lighttank");
addFileName("kits/mediumtank");
addFileName("kits/naked");
addFileName("kits/premiumhardcore");
addFileName("kits/terminator");

List<String> optionalConfigurations = new ArrayList<>();
optionalConfigurations.add("bow-cooldown");
Expand Down
Loading

0 comments on commit 1fb31a2

Please sign in to comment.