( formatting

This commit is contained in:
Bella 2020-03-30 20:04:48 -04:00
parent 7c0c420306
commit 3586aeb801
No known key found for this signature in database
GPG Key ID: 815562EA23BFE344
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ public class InfoCalculator {
// Cardinal to Axis {
public static String cardinalToAxis(char cardinal) {
switch(cardinal) {
switch (cardinal) {
case 'N':
return "-Z";
case 'S':
@ -115,7 +115,7 @@ public class InfoCalculator {
// Dimension {
public static String playerDimension(Minecraft mc) {
if (mc.player == null) return "No Dimension";
switch(mc.player.dimension) {
switch (mc.player.dimension) {
case -1:
return "Nether";
case 0: