diff --git a/.gitignore b/.gitignore index 8f30c6e0..7feda41f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,8 +5,8 @@ .DS_Store -/*.iml -/.idea +**/*.iml +**/.idea /bin /dependency-reduced-pom.xml diff --git a/worldguard-core/worldguard-core.iml b/worldguard-core/worldguard-core.iml deleted file mode 100644 index 6c1e626f..00000000 --- a/worldguard-core/worldguard-core.iml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/worldguard-legacy/defaults/blacklist.txt b/worldguard-legacy/defaults/blacklist.txt deleted file mode 100644 index 8ed6e0de..00000000 --- a/worldguard-legacy/defaults/blacklist.txt +++ /dev/null @@ -1,65 +0,0 @@ -# -# WorldGuard blacklist -# -# The blacklist lets you block actions, blocks, and items from being used. -# You choose a set of "items to affect" and a list of "actions to perform." -# -############################################################################### -# -# Example to block some ore mining and placement: -# [coalore,goldore,ironore] -# on-break=deny,log,kick -# on-place=deny,tell -# -# Events that you can detect: -# - on-break (when a block of this type is about to be broken) -# - on-destroy-with (the item/block held by the user while destroying) -# - on-place (a block is being placed) -# - on-use (an item like flint and steel or a bucket is being used) -# - on-interact (when a block in used (doors, chests, etc.)) -# - on-drop (an item is being dropped from the player's inventory) -# - on-acquire (an item enters a player's inventory via some method) -# - on-dispense (a dispenser is about to dispense an item) -# -# Actions (for events): -# - deny (deny completely, used blacklist mode) -# - allow (used in whitelist mode) -# - notify (notify admins with the 'worldguard.notify' permission) -# - log (log to console/file/database) -# - tell (tell a player that that's not allowed) -# - kick (kick player) -# - ban (ban player) -# -# Options: -# - ignore-groups (comma-separated list of groups to not affect) -# - ignore-perms (comma-separated list of permissions to not affect - make up -# your very own permissions!) -# - comment (message for yourself that is printed with 'log' and 'notify') -# - message (optional message to show the user instead; %s is the item name) -# -############################################################################### -# -# For more information, see: -# http://wiki.sk89q.com/wiki/WorldGuard/Blacklist -# -############################################################################### -# -# Some examples follow. -# REMEMBER: If a line has # in front, it will be ignored. -# - -# Deny lava buckets -#[lavabucket] -#ignore-perms=my.own.madeup.permission -#ignore-groups=admins,mods -#on-use=deny,tell - -# Deny some ore -#[coalore,goldore,ironore] -#ignore-groups=admins,mods -#on-break=notify,deny,log - -# Some funky data value tests -#[wood:0;>=2] -#ignore-groups=admins,mods -#on-break=notify,deny,log \ No newline at end of file diff --git a/worldguard-legacy/defaults/config.yml b/worldguard-legacy/defaults/config.yml deleted file mode 100644 index 4501e6fb..00000000 --- a/worldguard-legacy/defaults/config.yml +++ /dev/null @@ -1,22 +0,0 @@ -# -# WorldGuard's configuration file -# -# About editing this file: -# - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If -# you use an editor like Notepad++ (recommended for Windows users), you -# must configure it to "replace tabs with spaces." In Notepad++, this can -# be changed in Settings > Preferences > Language Menu. -# - Don't get rid of the indents. They are indented so some entries are -# in categories (like "enforce-single-session" is in the "protection" -# category. -# - If you want to check the format of this file before putting it -# into WorldGuard, paste it into http://yaml-online-parser.appspot.com/ -# and see if it gives "ERROR:". -# - Lines starting with # are commentsand so they are ignored. -# -# WARNING: -# Remember to check the compatibility spreadsheet for WorldGuard to see -# if any features are currently broken in your version of Bukkit. -# - -# -- This should be automatically replaced by the plugin in-game -- \ No newline at end of file diff --git a/worldguard-legacy/defaults/config_world.yml b/worldguard-legacy/defaults/config_world.yml deleted file mode 100644 index db29fa3a..00000000 --- a/worldguard-legacy/defaults/config_world.yml +++ /dev/null @@ -1,21 +0,0 @@ -# -# WorldGuard's configuration file. -# -# This is the a per-world configuration file. It only affects one -# corresponding world. -# -# About editing this file: -# - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If -# you use an editor like Notepad++ (recommended for Windows users), you -# must configure it to "replace tabs with spaces." In Notepad++, this can -# be changed in Settings > Preferences > Language Menu. -# - Don't get rid of the indents. They are indented so some entries are -# in categories (like "enforce-single-session" is in the "protection" -# category. -# - If you want to check the format of this file before putting it -# into WorldGuard, paste it into http://yaml-online-parser.appspot.com/ -# and see if it gives "ERROR:". -# - Lines starting with # are comments and so they are ignored. -# - -# -- This should be automatically replaced by the plugin in-game -- \ No newline at end of file diff --git a/worldguard-legacy/defaults/migrations/region/mysql/V1__Initial.sql b/worldguard-legacy/defaults/migrations/region/mysql/V1__Initial.sql deleted file mode 100644 index 985b173f..00000000 --- a/worldguard-legacy/defaults/migrations/region/mysql/V1__Initial.sql +++ /dev/null @@ -1,212 +0,0 @@ -SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; -SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; -SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; - --- ----------------------------------------------------- --- Table `group` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}group` ( - `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT , - `name` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - PRIMARY KEY (`id`) , - UNIQUE INDEX `name` (`name` ASC) ) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `world` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}world` ( - `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT , - `name` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - PRIMARY KEY (`id`) , - UNIQUE INDEX `name` (`name` ASC) ) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `region` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}region` ( - `id` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `world_id` INT(10) UNSIGNED NOT NULL , - `type` ENUM('cuboid','poly2d','global') CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `priority` SMALLINT(6) NOT NULL DEFAULT '0' , - `parent` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NULL DEFAULT NULL , - PRIMARY KEY (`id`, `world_id`) , - INDEX `fk_region_world` (`world_id` ASC) , - INDEX `parent` (`parent` ASC) , - CONSTRAINT `fk_${tablePrefix}region_world1` - FOREIGN KEY (`world_id` ) - REFERENCES `${tablePrefix}world` (`id` ) - ON DELETE CASCADE - ON UPDATE CASCADE, - CONSTRAINT `${tablePrefix}parent` - FOREIGN KEY (`parent` ) - REFERENCES `${tablePrefix}region` (`id` ) - ON DELETE SET NULL - ON UPDATE CASCADE) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `region_cuboid` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}region_cuboid` ( - `region_id` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `world_id` INT(10) UNSIGNED NOT NULL , - `min_x` BIGINT(20) NOT NULL , - `min_y` BIGINT(20) NOT NULL , - `min_z` BIGINT(20) NOT NULL , - `max_x` BIGINT(20) NOT NULL , - `max_y` BIGINT(20) NOT NULL , - `max_z` BIGINT(20) NOT NULL , - PRIMARY KEY (`region_id`, `world_id`) , - INDEX `fk_region_cuboid_region` (`region_id` ASC) , - CONSTRAINT `fk_${tablePrefix}region_cuboid_region` - FOREIGN KEY (`region_id` , `world_id` ) - REFERENCES `${tablePrefix}region` (`id` , `world_id` ) - ON DELETE CASCADE - ON UPDATE CASCADE) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `region_flag` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}region_flag` ( - `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT , - `region_id` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `world_id` INT(10) UNSIGNED NOT NULL , - `flag` VARCHAR(45) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `value` VARCHAR(256) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - PRIMARY KEY (`id`) , - INDEX `fk_flags_region` (`region_id` ASC, `world_id` ASC) , - CONSTRAINT `fk_${tablePrefix}flags_region` - FOREIGN KEY (`region_id` , `world_id` ) - REFERENCES `${tablePrefix}region` (`id` , `world_id` ) - ON DELETE CASCADE - ON UPDATE CASCADE) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `region_groups` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}region_groups` ( - `region_id` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `world_id` INT(10) UNSIGNED NOT NULL , - `group_id` INT(10) UNSIGNED NOT NULL , - `owner` TINYINT(1) NOT NULL , - PRIMARY KEY (`region_id`, `world_id`, `group_id`) , - INDEX `fk_region_groups_region` (`region_id` ASC) , - INDEX `fk_region_groups_group` (`group_id` ASC) , - CONSTRAINT `fk_${tablePrefix}region_groups_group` - FOREIGN KEY (`group_id` ) - REFERENCES `${tablePrefix}group` (`id` ) - ON DELETE CASCADE - ON UPDATE CASCADE, - CONSTRAINT `fk_${tablePrefix}region_groups_region` - FOREIGN KEY (`region_id` , `world_id` ) - REFERENCES `${tablePrefix}region` (`id` , `world_id` ) - ON DELETE CASCADE - ON UPDATE CASCADE) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `user` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}user` ( - `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT , - `name` VARCHAR(64) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - PRIMARY KEY (`id`) , - UNIQUE INDEX `name` (`name` ASC) ) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `region_players` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}region_players` ( - `region_id` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `world_id` INT(10) UNSIGNED NOT NULL , - `user_id` INT(10) UNSIGNED NOT NULL , - `owner` TINYINT(1) NOT NULL , - PRIMARY KEY (`region_id`, `world_id`, `user_id`) , - INDEX `fk_region_players_region` (`region_id` ASC) , - INDEX `fk_region_users_user` (`user_id` ASC) , - CONSTRAINT `fk_${tablePrefix}region_users_region` - FOREIGN KEY (`region_id` , `world_id` ) - REFERENCES `${tablePrefix}region` (`id` , `world_id` ) - ON DELETE CASCADE - ON UPDATE CASCADE, - CONSTRAINT `fk_${tablePrefix}region_users_user` - FOREIGN KEY (`user_id` ) - REFERENCES `${tablePrefix}user` (`id` ) - ON DELETE CASCADE - ON UPDATE CASCADE) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `region_poly2d` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}region_poly2d` ( - `region_id` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `world_id` INT(10) UNSIGNED NOT NULL , - `min_y` INT(11) NOT NULL , - `max_y` INT(11) NOT NULL , - PRIMARY KEY (`region_id`, `world_id`) , - INDEX `fk_region_poly2d_region` (`region_id` ASC) , - CONSTRAINT `fk_${tablePrefix}region_poly2d_region` - FOREIGN KEY (`region_id` , `world_id` ) - REFERENCES `${tablePrefix}region` (`id` , `world_id` ) - ON DELETE CASCADE - ON UPDATE CASCADE) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - --- ----------------------------------------------------- --- Table `region_poly2d_point` --- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `${tablePrefix}region_poly2d_point` ( - `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT , - `region_id` VARCHAR(128) CHARACTER SET 'utf8' COLLATE 'utf8_bin' NOT NULL , - `world_id` INT(10) UNSIGNED NOT NULL , - `x` BIGINT(20) NOT NULL , - `z` BIGINT(20) NOT NULL , - PRIMARY KEY (`id`) , - INDEX `fk_region_poly2d_point_region_poly2d` (`region_id` ASC, `world_id` ASC) , - CONSTRAINT `fk_${tablePrefix}region_poly2d_point_region_poly2d` - FOREIGN KEY (`region_id` , `world_id` ) - REFERENCES `${tablePrefix}region_poly2d` (`region_id` , `world_id` ) - ON DELETE CASCADE - ON UPDATE CASCADE) -ENGINE = InnoDB -DEFAULT CHARACTER SET = utf8 -COLLATE = utf8_bin; - - - -SET SQL_MODE=@OLD_SQL_MODE; -SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; -SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; diff --git a/worldguard-legacy/defaults/migrations/region/mysql/V2__Bug_fix_and_UUID.sql b/worldguard-legacy/defaults/migrations/region/mysql/V2__Bug_fix_and_UUID.sql deleted file mode 100644 index b1df899f..00000000 --- a/worldguard-legacy/defaults/migrations/region/mysql/V2__Bug_fix_and_UUID.sql +++ /dev/null @@ -1,27 +0,0 @@ --- Fix WORLDGUARD-3117 --- Otherwise, you can't be both an owner and a member of a region - -ALTER TABLE `${tablePrefix}region_players` - DROP PRIMARY KEY, - ADD PRIMARY KEY (`region_id`, `world_id`, `user_id`, `owner`); - -ALTER TABLE `${tablePrefix}region_groups` - DROP PRIMARY KEY, - ADD PRIMARY KEY (`region_id`, `world_id`, `group_id`, `owner`); - --- Fix WORLDGUARD-3030 --- Adds UUID support - -ALTER TABLE `${tablePrefix}user` - ALTER `name` DROP DEFAULT; - -ALTER TABLE `${tablePrefix}user` - CHANGE COLUMN `name` `name` VARCHAR(64) NULL COLLATE 'utf8_bin' AFTER `id`, - ADD COLUMN `uuid` CHAR(36) NULL AFTER `name`, - ADD UNIQUE INDEX `uuid` (`uuid`); - --- Strings with differing numbers of trailing spaces are equal in MySQL --- The domains have been updated to trim strings - -UPDATE `${tablePrefix}user` SET `name` = TRIM(`name`); -UPDATE `${tablePrefix}group` SET `name` = TRIM(`name`); \ No newline at end of file diff --git a/worldguard-legacy/defaults/migrations/region/sqlite/V1__Initial.sql b/worldguard-legacy/defaults/migrations/region/sqlite/V1__Initial.sql deleted file mode 100644 index 2b5b99e3..00000000 --- a/worldguard-legacy/defaults/migrations/region/sqlite/V1__Initial.sql +++ /dev/null @@ -1,160 +0,0 @@ - -CREATE TABLE "${tablePrefix}world" ( - id INTEGER PRIMARY KEY AUTOINCREMENT - NOT NULL, - name TEXT NOT NULL - UNIQUE -); - - -CREATE TABLE "${tablePrefix}region" ( - id TEXT NOT NULL, - world_id INTEGER NOT NULL - REFERENCES "${tablePrefix}world" ( id ) ON DELETE CASCADE - ON UPDATE CASCADE, - type TEXT NOT NULL, - priority INTEGER NOT NULL, - parent TEXT DEFAULT ( NULL ) - --REFERENCES "${tablePrefix}region" ( id ) ON DELETE SET NULL - -- ON UPDATE CASCADE -- Not supported - , - PRIMARY KEY ( id, world_id ) -); - - -CREATE TABLE "${tablePrefix}user" ( - id INTEGER PRIMARY KEY AUTOINCREMENT - NOT NULL, - name TEXT UNIQUE - DEFAULT ( NULL ), - uuid TEXT UNIQUE - DEFAULT ( NULL ) -); - - -CREATE TABLE "${tablePrefix}group" ( - id INTEGER PRIMARY KEY AUTOINCREMENT - NOT NULL, - name TEXT NOT NULL - UNIQUE -); - - -CREATE TABLE "${tablePrefix}region_cuboid" ( - region_id TEXT NOT NULL, - world_id INTEGER NOT NULL, - min_x INTEGER NOT NULL, - min_y INTEGER NOT NULL, - min_z INTEGER NOT NULL, - max_x INTEGER NOT NULL, - max_y INTEGER NOT NULL, - max_z INTEGER NOT NULL, - PRIMARY KEY ( region_id, world_id ), - FOREIGN KEY ( region_id, world_id ) REFERENCES "${tablePrefix}region" ( id, world_id ) ON DELETE CASCADE - ON UPDATE CASCADE -); - - -CREATE TABLE "${tablePrefix}region_poly2d" ( - region_id TEXT NOT NULL, - world_id INTEGER NOT NULL, - min_y INTEGER NOT NULL, - max_y INTEGER NOT NULL, - PRIMARY KEY ( region_id, world_id ), - FOREIGN KEY ( region_id, world_id ) REFERENCES "${tablePrefix}region" ( id, world_id ) ON DELETE CASCADE - ON UPDATE CASCADE -); - - -CREATE TABLE "${tablePrefix}region_poly2d_point" ( - id INTEGER PRIMARY KEY AUTOINCREMENT - NOT NULL, - region_id TEXT NOT NULL, - world_id INTEGER NOT NULL, - x INTEGER NOT NULL, - z INTEGER NOT NULL, - FOREIGN KEY ( region_id, world_id ) REFERENCES "${tablePrefix}region_poly2d" ( region_id, world_id ) ON DELETE CASCADE - ON UPDATE CASCADE -); - - -CREATE TABLE "${tablePrefix}region_groups" ( - region_id TEXT NOT NULL, - world_id INTEGER NOT NULL, - group_id INTEGER NOT NULL - REFERENCES "${tablePrefix}group" ( id ) ON DELETE CASCADE - ON UPDATE CASCADE, - owner BOOLEAN NOT NULL, - PRIMARY KEY ( region_id, world_id, group_id ), - FOREIGN KEY ( region_id, world_id ) REFERENCES "${tablePrefix}region" ( id, world_id ) ON DELETE CASCADE - ON UPDATE CASCADE -); - - -CREATE TABLE "${tablePrefix}region_flag" ( - id INTEGER PRIMARY KEY AUTOINCREMENT - NOT NULL, - region_id TEXT NOT NULL, - world_id INTEGER NOT NULL, - flag TEXT NOT NULL, - value TEXT NOT NULL, - FOREIGN KEY ( region_id, world_id ) REFERENCES "${tablePrefix}region" ( id, world_id ) ON DELETE CASCADE - ON UPDATE CASCADE -); - - -CREATE TABLE "${tablePrefix}region_players" ( - region_id TEXT NOT NULL, - world_id INTEGER NOT NULL, - user_id INTEGER NOT NULL - REFERENCES "${tablePrefix}user" ( id ) ON DELETE CASCADE - ON UPDATE CASCADE, - owner BOOLEAN NOT NULL, - PRIMARY KEY ( region_id, world_id, user_id, owner ), - FOREIGN KEY ( region_id, world_id ) REFERENCES "${tablePrefix}region" ( id, world_id ) ON DELETE CASCADE - ON UPDATE CASCADE -); - - -CREATE INDEX "idx_${tablePrefix}region_cuboid_region_id" ON "${tablePrefix}region_cuboid" ( - region_id -); - - -CREATE INDEX "idx_${tablePrefix}region_world_id" ON "${tablePrefix}region" ( - world_id -); - - -CREATE INDEX "idx_${tablePrefix}region_parent" ON "${tablePrefix}region" ( - parent -); - - -CREATE INDEX "idx_${tablePrefix}region_poly2d_region_id" ON "${tablePrefix}region_poly2d" ( - region_id -); - - -CREATE INDEX "idx_${tablePrefix}region_poly2d_point_region_world_id" ON "${tablePrefix}region_poly2d_point" ( - region_id, - world_id -); - - -CREATE INDEX "idx_${tablePrefix}region_groups_region_id" ON "${tablePrefix}region_groups" ( - region_id -); - - -CREATE INDEX "idx_${tablePrefix}region_groups_group_id" ON "${tablePrefix}region_groups" ( - group_id -); - - -CREATE INDEX "idx_${tablePrefix}region_flag_region_world_id" ON "${tablePrefix}region_flag" ( - region_id, - world_id, - flag -); - diff --git a/worldguard-legacy/defaults/plugin.yml b/worldguard-legacy/defaults/plugin.yml deleted file mode 100644 index b0aacf55..00000000 --- a/worldguard-legacy/defaults/plugin.yml +++ /dev/null @@ -1,4 +0,0 @@ -name: WorldGuard -main: com.sk89q.worldguard.bukkit.WorldGuardPlugin -version: "${project.version}" -softdepend: [WorldEdit, CommandBook] diff --git a/worldguard-legacy/worldguard-legacy.iml b/worldguard-legacy/worldguard-legacy.iml deleted file mode 100644 index 40d4d92f..00000000 --- a/worldguard-legacy/worldguard-legacy.iml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/worldguard-sponge/worldguard-sponge.iml b/worldguard-sponge/worldguard-sponge.iml deleted file mode 100644 index 2fceeb4e..00000000 --- a/worldguard-sponge/worldguard-sponge.iml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file