2021-10-04 11:27:58 +02:00
|
|
|
/*
|
|
|
|
* This file is a part of the SteamWar software.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 SteamWar.de-Serverteam
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package de.steamwar.lobby;
|
|
|
|
|
2022-03-10 13:09:04 +01:00
|
|
|
import de.steamwar.lobby.command.DebugCommand;
|
2022-02-12 11:11:16 +01:00
|
|
|
import de.steamwar.lobby.command.FlyCommand;
|
2021-10-04 16:53:08 +02:00
|
|
|
import de.steamwar.lobby.command.HologramCommand;
|
2021-10-04 12:20:51 +02:00
|
|
|
import de.steamwar.lobby.command.PortalCommand;
|
2021-10-04 11:27:58 +02:00
|
|
|
import de.steamwar.lobby.listener.Fightservers;
|
2022-02-12 11:11:16 +01:00
|
|
|
import de.steamwar.lobby.listener.PlayerConnection;
|
2021-10-04 11:27:58 +02:00
|
|
|
import de.steamwar.lobby.listener.Portals;
|
2022-02-13 12:03:06 +01:00
|
|
|
import de.steamwar.lobby.listener.features.*;
|
2021-10-04 11:46:15 +02:00
|
|
|
import de.steamwar.message.Message;
|
2021-10-04 11:27:58 +02:00
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
|
|
|
public class LobbySystem extends JavaPlugin {
|
|
|
|
|
2021-10-04 16:53:08 +02:00
|
|
|
private static Message message;
|
2021-10-04 11:27:58 +02:00
|
|
|
private static LobbySystem plugin;
|
|
|
|
private static Config config;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onLoad() {
|
|
|
|
plugin = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnable() {
|
2021-10-04 16:53:08 +02:00
|
|
|
message = new Message("de.steamwar.lobby.LobbySystem", getClassLoader());
|
2021-10-04 11:46:15 +02:00
|
|
|
|
2021-10-04 11:27:58 +02:00
|
|
|
new Fightservers();
|
|
|
|
new Portals();
|
2021-10-04 12:20:51 +02:00
|
|
|
new PortalCommand();
|
2021-10-04 16:53:08 +02:00
|
|
|
new HologramCommand();
|
2022-02-12 11:11:16 +01:00
|
|
|
new FlyCommand();
|
2022-03-10 13:09:04 +01:00
|
|
|
new DebugCommand();
|
2021-10-04 16:53:08 +02:00
|
|
|
|
|
|
|
config = new Config(getConfig());
|
2022-02-13 12:03:06 +01:00
|
|
|
new PlayerConnection();
|
|
|
|
new DoubleJumpListener();
|
|
|
|
new ElytraListener();
|
|
|
|
new ParticleListener();
|
|
|
|
new PlayerInventoryListener();
|
|
|
|
new PlayerWorldInteractionListener();
|
2022-02-13 13:30:05 +01:00
|
|
|
new PlayerMoveListener();
|
2021-10-04 11:27:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static LobbySystem getPlugin() {
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Config config() {
|
|
|
|
return config;
|
|
|
|
}
|
2021-10-04 16:53:08 +02:00
|
|
|
|
|
|
|
public static Message getMessage() {
|
|
|
|
return message;
|
|
|
|
}
|
2021-10-04 11:27:58 +02:00
|
|
|
}
|