FUNGUJE TOIOOOO

This commit is contained in:
babymsp2k
2025-07-05 00:14:40 +02:00
parent 99ea636934
commit 594ad6b0ec
3 changed files with 8 additions and 5 deletions
+5 -2
View File
@@ -64,8 +64,11 @@ dependencies {
compileOnly 'io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT' compileOnly 'io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT'
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.3' compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.3'
implementation 'io.papermc:paperlib:1.0.8' implementation 'io.papermc:paperlib:1.0.8'
implementation 'com.sk89q.worldguard:worldguard-bukkit:7.0.9'
implementation 'com.sk89q.worldedit:worldedit-bukkit:7.2.15' // Použij starší stabilní verze kompatibilní s Paper 1.21
compileOnly 'com.sk89q.worldguard:worldguard-bukkit:7.0.9'
compileOnly 'com.sk89q.worldedit:worldedit-bukkit:7.2.15'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.14.0' spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.14.0'
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.3' testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.3'
testImplementation 'io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT' testImplementation 'io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT'
@@ -1,12 +1,12 @@
package dev.trixinity.eventmanager; package dev.trixinity.eventmanager;
import org.bukkit.plugin.java.JavaPlugin;
import com.sk89q.worldguard.WorldGuard; import com.sk89q.worldguard.WorldGuard;
import com.sk89q.worldguard.protection.flags.Flag; import com.sk89q.worldguard.protection.flags.Flag;
import com.sk89q.worldguard.protection.flags.StateFlag; import com.sk89q.worldguard.protection.flags.StateFlag;
import com.sk89q.worldguard.protection.flags.registry.FlagRegistry; import com.sk89q.worldguard.protection.flags.registry.FlagRegistry;
import dev.trixinity.eventmanager.commands.TrixinityCommand;
import dev.trixinity.eventmanager.commands.EventCommand; import dev.trixinity.eventmanager.commands.EventCommand;
import dev.trixinity.eventmanager.commands.TrixinityCommand;
import org.bukkit.plugin.java.JavaPlugin;
/** /**
* Hlavní třída pluginu pro správu eventů na Minecraft serveru. * Hlavní třída pluginu pro správu eventů na Minecraft serveru.
@@ -1,9 +1,9 @@
package dev.trixinity.eventmanager.commands; package dev.trixinity.eventmanager.commands;
import org.bukkit.ChatColor;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import org.bukkit.ChatColor;
/** /**
* Implementace příkazu /trixinity pro zobrazení informací o pluginu. * Implementace příkazu /trixinity pro zobrazení informací o pluginu.