Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimordialMoros committed Aug 10, 2024
1 parent 9163d75 commit 3ee26c4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public interface Configurable extends Serializable {
/**
* Controls if this configuration external and cannot be loaded from the main configuration file.
* @return whether this configuration is external
* @see ConfigProcessor#calculate(Ability, Configurable)
* @see ConfigProcessor#calculate(Ability, Class)
*/
default boolean external() {
return false;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ plugins {
}

group = "me.moros"
version = "3.10.0-SNAPSHOT"
version = "3.10.0"
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sgui = { module = "eu.pb4:sgui", version = "1.6.0+1.21" }
fabric-permissions = { module = "me.lucko:fabric-permissions-api", version = "0.3.1" }

# Bukkit
inventory-framework = { module = "com.github.stefvanschie.inventoryframework:IF", version = "0.10.16" }
inventory-framework = { module = "com.github.stefvanschie.inventoryframework:IF", version = "0.10.16-dev-SNAPSHOT" }
grief-prevention = { module = "com.github.TechFortress:GriefPrevention", version = "16.18.4" }
towny = { module = "com.palmergames.bukkit.towny:towny", version = "0.100.3.0" }
lwc = { module = "com.griefcraft:lwc", version = "2.4.0" }
Expand Down
1 change: 1 addition & 0 deletions paper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ repositories {
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/") // PAPI
maven("https://repo.codemc.io/repository/maven-public/") // LWC
maven("https://repo.glaremasters.me/repository/towny/") // Towny
maven("https://repo.moros.me/snapshots/")
maven("https://jitpack.io/") // GriefPrevention
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import java.util.Map;

import com.github.stefvanschie.inventoryframework.adventuresupport.ComponentHolder;
import com.github.stefvanschie.inventoryframework.gui.GuiItem;
import com.github.stefvanschie.inventoryframework.gui.type.ChestGui;
import com.github.stefvanschie.inventoryframework.pane.OutlinePane;
Expand All @@ -46,7 +45,7 @@ private ElementMenu(ElementHandler handler, Player player) {

@Override
protected ChestGui construct(Map<Element, ItemStack> elementMap) {
ChestGui gui = new ChestGui(3, ComponentHolder.of(Message.ELEMENTS_GUI_TITLE.build()));
ChestGui gui = new ChestGui(3, Message.ELEMENTS_GUI_TITLE.build());
gui.setOnGlobalClick(event -> event.setCancelled(true));
OutlinePane background = new OutlinePane(0, 0, 9, 3, Priority.LOWEST);
background.addItem(new GuiItem(backgroundItem()));
Expand Down

0 comments on commit 3ee26c4

Please sign in to comment.