-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
src/main/java/top/mpt/xzystudio/flywars/commands/impl/killme.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package top.mpt.xzystudio.flywars.commands.impl; | ||
|
||
import org.bukkit.command.CommandSender; | ||
import org.bukkit.entity.Player; | ||
import top.mpt.xzystudio.flywars.commands.ICommand; | ||
|
||
/** | ||
* 清空team指令 | ||
*/ | ||
public class killme extends ICommand { | ||
public killme() { | ||
super("killme", "", "自杀"); | ||
} | ||
|
||
public boolean onCommand(CommandSender sender, String[] args) { | ||
Player p = (Player) sender; | ||
p.setHealth(0); | ||
return true; | ||
} | ||
|
||
public String permission(){ | ||
return "flywars.fw.killme"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters