diff --git a/src/main/java/com/onarandombox/MultiverseCore/LoggablePlugin.java b/src/main/java/com/onarandombox/MultiverseCore/LoggablePlugin.java index d8837706..bdea57cd 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/LoggablePlugin.java +++ b/src/main/java/com/onarandombox/MultiverseCore/LoggablePlugin.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; import java.util.logging.Level; diff --git a/src/main/java/com/onarandombox/MultiverseCore/MVPermissions.java b/src/main/java/com/onarandombox/MultiverseCore/MVPermissions.java index e822ec37..f6dadded 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MVPermissions.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MVPermissions.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; import java.util.List; @@ -23,7 +30,7 @@ public class MVPermissions implements PermissionsInterface { /** * Constructor FTW - * + * * @param plugin Pass along the Core Plugin. */ public MVPermissions(MultiverseCore plugin) { @@ -38,7 +45,7 @@ public class MVPermissions implements PermissionsInterface { /** * Check if a Player can teleport to the Destination world from there current world. - * + * * @param p * @param w * @return @@ -67,7 +74,7 @@ public class MVPermissions implements PermissionsInterface { /** * Check if the Player has the permissions to enter this world. - * + * * @param p * @param w * @return @@ -234,7 +241,7 @@ public class MVPermissions implements PermissionsInterface { /** * If the given permission was 'multiverse.core.tp.self', this would return 'multiverse.core.tp.*'. - * + * * @param seperated * @return */ diff --git a/src/main/java/com/onarandombox/MultiverseCore/MVPlayerSession.java b/src/main/java/com/onarandombox/MultiverseCore/MVPlayerSession.java index c64de228..64056719 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MVPlayerSession.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MVPlayerSession.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; import java.util.Date; @@ -35,7 +42,7 @@ public class MVPlayerSession { /** * Grab whether the cooldown on Portal use has expired or not. - * + * * @return */ public boolean getTeleportable() { @@ -49,7 +56,7 @@ public class MVPlayerSession { /** * Send a Message to the Player as long as enough time has passed since the last message. - * + * * @param msg */ public void message(String msg) { @@ -59,10 +66,10 @@ public class MVPlayerSession { this.messageLast = time; } } - + // Commented out bed code, i'll get rid of it soon. // --FF - + // public void setRespawnLocation(Location location) { // this.bedSpawn = location; // } diff --git a/src/main/java/com/onarandombox/MultiverseCore/MVPlugin.java b/src/main/java/com/onarandombox/MultiverseCore/MVPlugin.java index f814f3c6..d50600a0 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MVPlugin.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MVPlugin.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; public interface MVPlugin extends LoggablePlugin { diff --git a/src/main/java/com/onarandombox/MultiverseCore/MVTeleport.java b/src/main/java/com/onarandombox/MultiverseCore/MVTeleport.java index ac13d053..922e0320 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MVTeleport.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MVTeleport.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; import java.util.logging.Level; diff --git a/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java b/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java index 23b61f1e..413be191 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MVWorld.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; import java.util.ArrayList; diff --git a/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java b/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java index 0ebd672b..dba8a7c4 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java +++ b/src/main/java/com/onarandombox/MultiverseCore/MultiverseCore.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; import java.io.BufferedReader; diff --git a/src/main/java/com/onarandombox/MultiverseCore/SpoutInterface.java b/src/main/java/com/onarandombox/MultiverseCore/SpoutInterface.java index 7e428ec3..e248bc29 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/SpoutInterface.java +++ b/src/main/java/com/onarandombox/MultiverseCore/SpoutInterface.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore; import org.getspout.spoutapi.SpoutManager; @@ -7,7 +14,7 @@ public class SpoutInterface { public SpoutInterface() { this.spoutManager = SpoutManager.getInstance(); } - + public SpoutManager getManager() { return this.spoutManager; } diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ConfirmCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ConfirmCommand.java index edba43bd..b51a234e 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ConfirmCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ConfirmCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/CoordCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/CoordCommand.java index 90c1e538..956c014d 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/CoordCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/CoordCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/CreateCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/CreateCommand.java index 15073821..7cb4703c 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/CreateCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/CreateCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/DebugCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/DebugCommand.java index d826d3ea..74ad5795 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/DebugCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/DebugCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java index eb3e44ed..c1b892d5 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/DeleteCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/EnvironmentCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/EnvironmentCommand.java index 7293c64f..c1a9a22f 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/EnvironmentCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/EnvironmentCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/GeneratorCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/GeneratorCommand.java index a50f8182..6aaa13eb 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/GeneratorCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/GeneratorCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/HelpCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/HelpCommand.java index 3a5044e9..0d7a7f45 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/HelpCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/HelpCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + // This file is no longer licensed under that silly CC license. I have blanked it out and will start implementaiton of my own in a few days. For now there is no help. package com.onarandombox.MultiverseCore.commands; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ImportCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ImportCommand.java index 95b53be9..e2c4f946 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ImportCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ImportCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/InfoCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/InfoCommand.java index b245bad7..8fbf311f 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/InfoCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/InfoCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ListCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ListCommand.java index 5c3f5878..4e810b6a 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ListCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ListCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyAddCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyAddCommand.java index c3722255..ba546ca9 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyAddCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyAddCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyClearCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyClearCommand.java index c82ec9c0..62b4bfe3 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyClearCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyClearCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyCommand.java index da0f9c1d..c9dca8d9 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyRemoveCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyRemoveCommand.java index 7ccfe3e8..0e608558 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyRemoveCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifyRemoveCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifySetCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifySetCommand.java index f3227da4..589b5e05 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ModifySetCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ModifySetCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/MultiverseCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/MultiverseCommand.java index 4cc4b984..9db29dcf 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/MultiverseCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/MultiverseCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/PurgeCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/PurgeCommand.java index 15e30496..c9cb0490 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/PurgeCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/PurgeCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/ReloadCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/ReloadCommand.java index 613402ea..49c0f55a 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/ReloadCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/ReloadCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/RemoveCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/RemoveCommand.java index 59f5ecd8..aabf3608 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/RemoveCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/RemoveCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/SetSpawnCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/SetSpawnCommand.java index bbe94b53..48187bb2 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/SetSpawnCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/SetSpawnCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/SleepCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/SleepCommand.java index f5db242b..b81abfc1 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/SleepCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/SleepCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/SpawnCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/SpawnCommand.java index 5a3644ff..746a149e 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/SpawnCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/SpawnCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/SpoutCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/SpoutCommand.java index a912038a..75a0d2d6 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/SpoutCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/SpoutCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/TeleportCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/TeleportCommand.java index 08874501..fd761b7d 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/TeleportCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/TeleportCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVTeleport; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/UnloadCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/UnloadCommand.java index cc4972dc..16c9ddf3 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/UnloadCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/UnloadCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/VersionCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/VersionCommand.java index 921c915f..32351bf9 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/VersionCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/VersionCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java index 73339fa5..673a48d9 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.commands; import com.onarandombox.MultiverseCore.MVWorld; diff --git a/src/main/java/com/onarandombox/MultiverseCore/configuration/DefaultConfig.java b/src/main/java/com/onarandombox/MultiverseCore/configuration/DefaultConfig.java index 0f47d395..344fb962 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/configuration/DefaultConfig.java +++ b/src/main/java/com/onarandombox/MultiverseCore/configuration/DefaultConfig.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.configuration; import java.io.File; diff --git a/src/main/java/com/onarandombox/MultiverseCore/configuration/MVConfigMigrator.java b/src/main/java/com/onarandombox/MultiverseCore/configuration/MVConfigMigrator.java index 25d21f42..339523a7 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/configuration/MVConfigMigrator.java +++ b/src/main/java/com/onarandombox/MultiverseCore/configuration/MVConfigMigrator.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.configuration; import java.io.File; @@ -24,7 +31,7 @@ public abstract class MVConfigMigrator { } newConfig.setProperty("worlds." + key + newProperty, list); } - + protected final File detectMultiverseFolders(File folder, LoggablePlugin mvPlugin) { File oldFolder = null; mvPlugin.log(Level.INFO, "Starting Multiverse Configuration Migrator(MVCM)!"); diff --git a/src/main/java/com/onarandombox/MultiverseCore/configuration/MVCoreConfigMigrator.java b/src/main/java/com/onarandombox/MultiverseCore/configuration/MVCoreConfigMigrator.java index ba6828fa..6e9a8cb6 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/configuration/MVCoreConfigMigrator.java +++ b/src/main/java/com/onarandombox/MultiverseCore/configuration/MVCoreConfigMigrator.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.configuration; import java.io.File; diff --git a/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigMigrateEvent.java b/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigMigrateEvent.java index bf59789c..532bb348 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigMigrateEvent.java +++ b/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigMigrateEvent.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.event; import java.util.List; @@ -12,11 +19,11 @@ public class MVConfigMigrateEvent extends Event { super("MVConfigMigrate"); this.configsLoaded = configsLoaded; } - + public void addConfig(String config) { this.configsLoaded.add(config); } - + public List getAllConfigsLoaded() { return this.configsLoaded; } diff --git a/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigReloadEvent.java b/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigReloadEvent.java index 4ada866e..8850560f 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigReloadEvent.java +++ b/src/main/java/com/onarandombox/MultiverseCore/event/MVConfigReloadEvent.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.event; import java.util.List; @@ -12,11 +19,11 @@ public class MVConfigReloadEvent extends Event { super("MVConfigReload"); this.configsLoaded = configsLoaded; } - + public void addConfig(String config) { this.configsLoaded.add(config); } - + public List getAllConfigsLoaded() { return this.configsLoaded; } diff --git a/src/main/java/com/onarandombox/MultiverseCore/event/MVRespawnEvent.java b/src/main/java/com/onarandombox/MultiverseCore/event/MVRespawnEvent.java index 2b194b17..6ae43147 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/event/MVRespawnEvent.java +++ b/src/main/java/com/onarandombox/MultiverseCore/event/MVRespawnEvent.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.event; import org.bukkit.Location; diff --git a/src/main/java/com/onarandombox/MultiverseCore/event/MVTeleportEvent.java b/src/main/java/com/onarandombox/MultiverseCore/event/MVTeleportEvent.java index 757a503d..6ddfe2ea 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/event/MVTeleportEvent.java +++ b/src/main/java/com/onarandombox/MultiverseCore/event/MVTeleportEvent.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.event; import org.bukkit.Location; @@ -28,7 +35,7 @@ public class MVTeleportEvent extends Event implements Cancellable { /** * Returns the player who will be teleported by this event. - * + * * @return The player who will be teleported by this event. */ public Player getTeleportee() { @@ -37,7 +44,7 @@ public class MVTeleportEvent extends Event implements Cancellable { /** * Returns the location the player was before the teleport. - * + * * @return The location the player was before the teleport. */ public Location getFrom() { @@ -46,7 +53,7 @@ public class MVTeleportEvent extends Event implements Cancellable { /** * Returns the player who requested the Teleport - * + * * @return */ public CommandSender getTeleporter() { @@ -55,7 +62,7 @@ public class MVTeleportEvent extends Event implements Cancellable { /** * Returns the destination that the player will spawn at. - * + * * @return The destination the player will spawn at. */ public MVDestination getDestination() { diff --git a/src/main/java/com/onarandombox/MultiverseCore/event/MVVersionRequestEvent.java b/src/main/java/com/onarandombox/MultiverseCore/event/MVVersionRequestEvent.java index 42053134..5069be4b 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/event/MVVersionRequestEvent.java +++ b/src/main/java/com/onarandombox/MultiverseCore/event/MVVersionRequestEvent.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.event; import org.bukkit.event.Event; diff --git a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVEntityListener.java b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVEntityListener.java index 6c29fb61..15b8dd3b 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVEntityListener.java +++ b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVEntityListener.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.listeners; import java.util.List; @@ -112,7 +119,7 @@ public class MVEntityListener extends EntityListener { CreatureType creature = event.getCreatureType(); MVWorld mvworld = this.worldManager.getMVWorld(world.getName()); - + /** * Handle people with non-standard animals: ie a patched craftbukkit. */ @@ -120,7 +127,7 @@ public class MVEntityListener extends EntityListener { this.plugin.log(Level.FINER, "Found a null typed creature."); return; } - + /** * Animal Handling */ diff --git a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPlayerListener.java b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPlayerListener.java index a0291bfc..c352f2d7 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPlayerListener.java +++ b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPlayerListener.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.listeners; import java.util.logging.Level; diff --git a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPluginListener.java b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPluginListener.java index fbe509c3..a94c421c 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPluginListener.java +++ b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVPluginListener.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.listeners; import java.util.Arrays; diff --git a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVWeatherListener.java b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVWeatherListener.java index 87b08df3..deeb549a 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/listeners/MVWeatherListener.java +++ b/src/main/java/com/onarandombox/MultiverseCore/listeners/MVWeatherListener.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.MultiverseCore.listeners; import org.bukkit.event.weather.ThunderChangeEvent; diff --git a/src/main/java/com/onarandombox/utils/BlockSafety.java b/src/main/java/com/onarandombox/utils/BlockSafety.java index 38523a11..94f38027 100644 --- a/src/main/java/com/onarandombox/utils/BlockSafety.java +++ b/src/main/java/com/onarandombox/utils/BlockSafety.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.util.logging.Level; @@ -19,7 +26,7 @@ public class BlockSafety { /** * This function checks whether the block at the given coordinates are above air or not. - * + * * @param world * @param x * @param y @@ -36,7 +43,7 @@ public class BlockSafety { Location l = new Location(world, x, y, z); return !playerCanSpawnHereSafely(l); } - + public boolean playerCanSpawnHereSafely(World world, double x, double y, double z) { Location l = new Location(world, x, y, z); return playerCanSpawnHereSafely(l); @@ -44,7 +51,7 @@ public class BlockSafety { /** * This function checks whether the block at the coordinates given is safe or not by checking for Laval/Fire/Air etc. This also ensures there is enough space for a player to spawn! - * + * * @param world * @param x * @param y @@ -85,7 +92,7 @@ public class BlockSafety { /** * If someone has a better way of this... Please either tell us, or submit a pull request! - * + * * @param type * @return */ @@ -175,7 +182,7 @@ public class BlockSafety { /** * Checks recursively below location L for 2 blocks of water - * + * * @param l * @return */ diff --git a/src/main/java/com/onarandombox/utils/CannonDestination.java b/src/main/java/com/onarandombox/utils/CannonDestination.java index 6df5ac65..ad9da86e 100644 --- a/src/main/java/com/onarandombox/utils/CannonDestination.java +++ b/src/main/java/com/onarandombox/utils/CannonDestination.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.util.Arrays; diff --git a/src/main/java/com/onarandombox/utils/DebugLog.java b/src/main/java/com/onarandombox/utils/DebugLog.java index 431ece83..fd1ab8ba 100644 --- a/src/main/java/com/onarandombox/utils/DebugLog.java +++ b/src/main/java/com/onarandombox/utils/DebugLog.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.io.IOException; diff --git a/src/main/java/com/onarandombox/utils/DestinationFactory.java b/src/main/java/com/onarandombox/utils/DestinationFactory.java index fd959d19..4c7a30fe 100644 --- a/src/main/java/com/onarandombox/utils/DestinationFactory.java +++ b/src/main/java/com/onarandombox/utils/DestinationFactory.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.util.ArrayList; diff --git a/src/main/java/com/onarandombox/utils/ExactDestination.java b/src/main/java/com/onarandombox/utils/ExactDestination.java index 6094ef3f..f2fc2dc8 100644 --- a/src/main/java/com/onarandombox/utils/ExactDestination.java +++ b/src/main/java/com/onarandombox/utils/ExactDestination.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.util.Arrays; diff --git a/src/main/java/com/onarandombox/utils/FancyColorScheme.java b/src/main/java/com/onarandombox/utils/FancyColorScheme.java index 6c8a6296..5fa905fc 100644 --- a/src/main/java/com/onarandombox/utils/FancyColorScheme.java +++ b/src/main/java/com/onarandombox/utils/FancyColorScheme.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import org.bukkit.ChatColor; @@ -7,30 +14,30 @@ public class FancyColorScheme { private ChatColor mainColor; private ChatColor altColor; private ChatColor defContentColor; - + public FancyColorScheme(ChatColor header, ChatColor main, ChatColor alt, ChatColor defaultColor) { this.headerColor = header; this.mainColor = main; this.altColor = alt; this.defContentColor = defaultColor; } - + public ChatColor getHeader() { return this.headerColor; } - + public ChatColor getMain() { return this.mainColor; } - + public ChatColor getAlt() { return this.altColor; } - + public ChatColor getDefault() { return this.defContentColor; } - + public ChatColor getMain(boolean main) { return main ? this.getMain() : this.getAlt(); } diff --git a/src/main/java/com/onarandombox/utils/FancyHeader.java b/src/main/java/com/onarandombox/utils/FancyHeader.java index 4b003d24..427caed5 100644 --- a/src/main/java/com/onarandombox/utils/FancyHeader.java +++ b/src/main/java/com/onarandombox/utils/FancyHeader.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; public class FancyHeader implements FancyText { diff --git a/src/main/java/com/onarandombox/utils/FancyMessage.java b/src/main/java/com/onarandombox/utils/FancyMessage.java index 2db8ebee..0a672bea 100644 --- a/src/main/java/com/onarandombox/utils/FancyMessage.java +++ b/src/main/java/com/onarandombox/utils/FancyMessage.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; public class FancyMessage implements FancyText { diff --git a/src/main/java/com/onarandombox/utils/FancyText.java b/src/main/java/com/onarandombox/utils/FancyText.java index 5297afcc..89941ca0 100644 --- a/src/main/java/com/onarandombox/utils/FancyText.java +++ b/src/main/java/com/onarandombox/utils/FancyText.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; public interface FancyText { diff --git a/src/main/java/com/onarandombox/utils/FileUtils.java b/src/main/java/com/onarandombox/utils/FileUtils.java index 53ec30b9..d5456d7a 100644 --- a/src/main/java/com/onarandombox/utils/FileUtils.java +++ b/src/main/java/com/onarandombox/utils/FileUtils.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.io.File; @@ -5,9 +12,9 @@ import java.io.File; public class FileUtils { /* * Delete a folder Courtesy of: lithium3141 - * + * * @param file The folder to delete - * + * * @return true if success */ public static boolean deleteFolder(File file) { diff --git a/src/main/java/com/onarandombox/utils/InvalidDestination.java b/src/main/java/com/onarandombox/utils/InvalidDestination.java index 217f2a90..8f6775cc 100644 --- a/src/main/java/com/onarandombox/utils/InvalidDestination.java +++ b/src/main/java/com/onarandombox/utils/InvalidDestination.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import org.bukkit.ChatColor; diff --git a/src/main/java/com/onarandombox/utils/LocationManipulation.java b/src/main/java/com/onarandombox/utils/LocationManipulation.java index 59f4bbcd..60cdc473 100644 --- a/src/main/java/com/onarandombox/utils/LocationManipulation.java +++ b/src/main/java/com/onarandombox/utils/LocationManipulation.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.text.DecimalFormat; @@ -26,7 +33,7 @@ public class LocationManipulation { /** * Convert a Location into a Colon separated string to allow us to store it in text. - * + * * @param location * @return */ @@ -42,7 +49,7 @@ public class LocationManipulation { /** * Convert a String to a Location. - * + * * @param world * @param xStr * @param yStr @@ -98,7 +105,7 @@ public class LocationManipulation { /** * Return the NESW Direction a Location is facing. - * + * * @param location * @return */ @@ -187,7 +194,7 @@ public class LocationManipulation { /** * Returns the next Location that an entity is traveling at - * + * * @param v * @return */ diff --git a/src/main/java/com/onarandombox/utils/MVDestination.java b/src/main/java/com/onarandombox/utils/MVDestination.java index c0a7a951..70edf945 100644 --- a/src/main/java/com/onarandombox/utils/MVDestination.java +++ b/src/main/java/com/onarandombox/utils/MVDestination.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import org.bukkit.Location; diff --git a/src/main/java/com/onarandombox/utils/MVTravelAgent.java b/src/main/java/com/onarandombox/utils/MVTravelAgent.java index ea05063e..ca7b3c74 100644 --- a/src/main/java/com/onarandombox/utils/MVTravelAgent.java +++ b/src/main/java/com/onarandombox/utils/MVTravelAgent.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.util.logging.Level; diff --git a/src/main/java/com/onarandombox/utils/PermissionTools.java b/src/main/java/com/onarandombox/utils/PermissionTools.java index 4c7a897e..b730c308 100644 --- a/src/main/java/com/onarandombox/utils/PermissionTools.java +++ b/src/main/java/com/onarandombox/utils/PermissionTools.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import com.onarandombox.MultiverseCore.MultiverseCore; diff --git a/src/main/java/com/onarandombox/utils/PlayerDestination.java b/src/main/java/com/onarandombox/utils/PlayerDestination.java index 3e3949d3..d859f4a6 100644 --- a/src/main/java/com/onarandombox/utils/PlayerDestination.java +++ b/src/main/java/com/onarandombox/utils/PlayerDestination.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import org.bukkit.Location; diff --git a/src/main/java/com/onarandombox/utils/PurgeWorlds.java b/src/main/java/com/onarandombox/utils/PurgeWorlds.java index 630e06be..b555e000 100644 --- a/src/main/java/com/onarandombox/utils/PurgeWorlds.java +++ b/src/main/java/com/onarandombox/utils/PurgeWorlds.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.util.ArrayList; diff --git a/src/main/java/com/onarandombox/utils/UpdateChecker.java b/src/main/java/com/onarandombox/utils/UpdateChecker.java index a08d1dbf..845dea0d 100644 --- a/src/main/java/com/onarandombox/utils/UpdateChecker.java +++ b/src/main/java/com/onarandombox/utils/UpdateChecker.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.io.BufferedReader; diff --git a/src/main/java/com/onarandombox/utils/WorldDestination.java b/src/main/java/com/onarandombox/utils/WorldDestination.java index 89ecbf74..35ad57f4 100644 --- a/src/main/java/com/onarandombox/utils/WorldDestination.java +++ b/src/main/java/com/onarandombox/utils/WorldDestination.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import org.bukkit.Location; diff --git a/src/main/java/com/onarandombox/utils/WorldManager.java b/src/main/java/com/onarandombox/utils/WorldManager.java index 4cffa688..d16fa7bd 100644 --- a/src/main/java/com/onarandombox/utils/WorldManager.java +++ b/src/main/java/com/onarandombox/utils/WorldManager.java @@ -1,3 +1,10 @@ +/****************************************************************************** + * Multiverse 2 Copyright (c) the Multiverse Team 2011. * + * Multiverse 2 is licensed under the BSD License. * + * For more information please check the README.md file included * + * with this project. * + ******************************************************************************/ + package com.onarandombox.utils; import java.io.File;