put under MIT License

This commit is contained in:
Evenprime 2011-04-10 16:52:45 +02:00
parent 3082133e40
commit bbe2250e0a
7 changed files with 52 additions and 0 deletions

21
LICENSE.txt Normal file
View File

@ -0,0 +1,21 @@
The MIT License
Copyright (c) 2011 Wilfried Pasquazzo (Evenprime) <wilfried.pasquazzo@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

4
README.txt Normal file
View File

@ -0,0 +1,4 @@
Copyright (c) 2011 Wilfried Pasquazzo (Evenprime) <wilfried.pasquazzo@gmail.com>
This software is provided under the MIT License,
see file LICENSE.txt for the full licensing terms.

View File

@ -1,5 +1,11 @@
package cc.co.evenprime.bukkit.nocheat.actions;
/**
*
* @author Evenprime
*
*/
public abstract class Action {
public final int firstAfter;

View File

@ -1,5 +1,10 @@
package cc.co.evenprime.bukkit.nocheat.actions;
/**
*
* @author Evenprime
*
*/
public class CancelAction extends Action {
public final static CancelAction cancel = new CancelAction();

View File

@ -1,5 +1,10 @@
package cc.co.evenprime.bukkit.nocheat.actions;
/**
*
* @author Evenprime
*
*/
public class CustomAction extends Action {

View File

@ -1,5 +1,10 @@
package cc.co.evenprime.bukkit.nocheat.actions;
/**
*
* @author Evenprime
*
*/
import java.util.logging.Level;
public class LogAction extends Action {

View File

@ -4,6 +4,12 @@ import org.bukkit.event.player.PlayerMoveEvent;
import cc.co.evenprime.bukkit.nocheat.NoCheat;
/**
*
* @author Evenprime
*
*/
public class BedteleportCheck extends Check {
public BedteleportCheck(NoCheat plugin) {