Compare commits

..

2 Commits

2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@
<groupId>me.totalfreedom</groupId> <groupId>me.totalfreedom</groupId>
<artifactId>TotalFreedomMod</artifactId> <artifactId>TotalFreedomMod</artifactId>
<version>2021.06</version> <version>2021.05</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>

View File

@ -67,6 +67,11 @@ public class Command_cage extends FreedomCommand
outerMaterial = Material.PLAYER_HEAD; outerMaterial = Material.PLAYER_HEAD;
if (args.length >= 3) if (args.length >= 3)
{ {
if (!args[2].matches("([A-z]*)") || args[2].length() < 3 || args[2].length() > 16)
{
msg("Invalid name!", ChatColor.RED);
return true;
}
skullName = args[2]; skullName = args[2];
} }
else else