grammar fix

This commit is contained in:
Elmon11 2021-05-02 14:03:48 +02:00 committed by GitHub
parent f240a15af3
commit 1cf46c7337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}
}