Merge branch 'development' into FS-221

This commit is contained in:
Video
2021-05-03 22:15:20 -06:00
committed by GitHub
7 changed files with 16 additions and 3 deletions

View File

@ -26,7 +26,7 @@ public class Command_glow extends FreedomCommand
playerSender.addPotionEffect(glow);
glowing = true;
}
msg("You " + (glowing ? "are now" : "no longer") + " glowing.");
msg("You are " + (glowing ? "now" : "no longer") + " glowing.");
return true;
}
}

View File

@ -26,7 +26,7 @@ public class Command_ride extends FreedomCommand
final FPlayer fPlayer = plugin.pl.getPlayer(playerSender);
if (fPlayer.getCageData().isCaged())
{
msg("You cannot used this command while caged.");
msg("You cannot use this command while caged.");
return true;
}