mirror of
https://github.com/KoopaCode/Lockage.git
synced 2025-04-03 23:07:33 +00:00
Updated Version to say beta!
This commit is contained in:
parent
07c4cf6fac
commit
267a3dbc53
@ -1,9 +1,9 @@
|
|||||||
name: Lockage
|
name: Lockage
|
||||||
version: '1.0.0'
|
version: '0.1.0-BETA'
|
||||||
main: com.koopalabs.lockage.Lockage
|
main: com.koopalabs.lockage.Lockage
|
||||||
api-version: '1.20'
|
api-version: '1.20'
|
||||||
author: Koopa
|
author: Koopa
|
||||||
description: A chest locking system using tripwire hooks as keys
|
description: A chest locking system using tripwire hooks as keys [BETA]
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
lockage:
|
lockage:
|
||||||
|
4
pom.xml
4
pom.xml
@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
<groupId>com.koopalabs</groupId>
|
<groupId>com.koopalabs</groupId>
|
||||||
<artifactId>lockage</artifactId>
|
<artifactId>lockage</artifactId>
|
||||||
<version>1.0.0</version>
|
<version>0.1.0-BETA</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>Lockage</name>
|
<name>Lockage</name>
|
||||||
<description>A chest locking system using tripwire hooks as keys</description>
|
<description>A chest locking system using tripwire hooks as keys [BETA]</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>17</java.version>
|
<java.version>17</java.version>
|
||||||
|
@ -39,7 +39,9 @@ public class LockageCommand implements CommandExecutor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void sendHelpMessage(Player player) {
|
private void sendHelpMessage(Player player) {
|
||||||
player.sendMessage(ChatColor.GOLD + "=== Lockage Help ===");
|
player.sendMessage(ChatColor.GOLD + "=== Lockage BETA Help ===");
|
||||||
|
player.sendMessage(ChatColor.RED + "Warning: This plugin is in BETA. Use with caution!");
|
||||||
|
player.sendMessage("");
|
||||||
player.sendMessage(ChatColor.YELLOW + "How to use:");
|
player.sendMessage(ChatColor.YELLOW + "How to use:");
|
||||||
player.sendMessage(ChatColor.GRAY + "1. Get a tripwire hook");
|
player.sendMessage(ChatColor.GRAY + "1. Get a tripwire hook");
|
||||||
player.sendMessage(ChatColor.GRAY + "2. Right-click an unlocked chest with the tripwire hook to lock it");
|
player.sendMessage(ChatColor.GRAY + "2. Right-click an unlocked chest with the tripwire hook to lock it");
|
||||||
@ -55,5 +57,7 @@ public class LockageCommand implements CommandExecutor {
|
|||||||
player.sendMessage(ChatColor.GRAY + "• Each key is unique to its chest");
|
player.sendMessage(ChatColor.GRAY + "• Each key is unique to its chest");
|
||||||
player.sendMessage(ChatColor.GRAY + "• Keep your keys safe!");
|
player.sendMessage(ChatColor.GRAY + "• Keep your keys safe!");
|
||||||
player.sendMessage(ChatColor.GRAY + "• Only the key that locked a chest can unlock it");
|
player.sendMessage(ChatColor.GRAY + "• Only the key that locked a chest can unlock it");
|
||||||
|
player.sendMessage("");
|
||||||
|
player.sendMessage(ChatColor.RED + "Found a bug? Report it to the server staff!");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user