Skip to content

Commit 75687ee

Browse files
committed
removed weird spacing with "," or similar things
1 parent a4f6d80 commit 75687ee

140 files changed

Lines changed: 377 additions & 396 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
106106
### 4. Permanent Ban
107107

108108
**Community Impact**: Demonstrating a pattern of violation of community
109-
standards, including sustained inappropriate behavior, harassment of an
109+
standards, including sustained inappropriate behavior, harassment of an
110110
individual, or aggression toward or disparagement of classes of individuals.
111111

112112
**Consequence**: A permanent ban from any sort of public interaction within

commons/src/main/java/net/swofty/commons/item/attribute/attributes/ItemAttributeHotPotatoBookData.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import net.swofty.commons.item.attribute.ItemAttribute;
1010
import net.swofty.commons.statistics.ItemStatistics;
1111
import org.jetbrains.annotations.Nullable;
12-
1312
import org.json.JSONArray;
1413
import org.json.JSONObject;
1514

@@ -89,7 +88,7 @@ public static class HotPotatoBookData {
8988
public void addAmount(ItemType itemType, int amount) {
9089
if (!appliedItems.containsKey(itemType)) {
9190
appliedItems.put(itemType, amount);
92-
}else{
91+
} else {
9392
appliedItems.put(itemType, appliedItems.get(itemType) + amount);
9493
}
9594
}

configuration/SkyBlockPack/assets/minecraft/models/block/scaffolding_unstable.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"from": [2, 0, 0],
108108
"to": [14, 2, 2],
109109
"faces": {
110-
"north": { "texture": "#side", "uv": [2, 0, 14, 2] , "cullface": "north" },
110+
"north": { "texture": "#side", "uv": [2, 0, 14, 2], "cullface": "north" },
111111
"south": { "texture": "#side", "uv": [2, 2, 14, 4] },
112112
"down": { "texture": "#bottom", "cullface": "bottom" }
113113
}
@@ -117,7 +117,7 @@
117117
"to": [14, 2, 16],
118118
"faces": {
119119
"north": { "texture": "#side", "uv": [14, 0, 2, 2] },
120-
"south": { "texture": "#side", "uv": [2, 0, 14, 2] , "cullface": "south" },
120+
"south": { "texture": "#side", "uv": [2, 0, 14, 2], "cullface": "south" },
121121
"down": { "texture": "#bottom", "cullface": "bottom" }
122122
}
123123
},

configuration/SkyBlockPack/assets/minecraft/models/block/small_dripleaf_top.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"to": [ 8, 12, 15 ],
2828
"shade": false,
2929
"faces": {
30-
"down": { "uv": [ 8, 0, 0, 8 ], "texture": "#top" , "rotation": 270},
31-
"up": { "uv": [ 0, 0, 8, 8 ], "texture": "#top" , "rotation": 270}
30+
"down": { "uv": [ 8, 0, 0, 8 ], "texture": "#top", "rotation": 270},
31+
"up": { "uv": [ 0, 0, 8, 8 ], "texture": "#top", "rotation": 270}
3232
}
3333
},
3434
{ "from": [ 8, 2, 8 ],

configuration/SkyBlockPack/assets/minecraft/models/item/tooting_goat_horn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"firstperson_lefthand": {
2222
"rotation": [ 0, 115, 5 ],
23-
"translation": [ 0 , -2.5, -7.5 ]
23+
"translation": [ 0, -2.5, -7.5 ]
2424
}
2525
}
2626
}

configuration/SkyBlockPack/assets/minecraft/texts/splashes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ Stand up for equality in your community!
416416
[this splash text is now available]
417417
Contains simulated goats!
418418
Home-made!
419-
There's <<a cat on ,my keyboard!~
419+
There's <<a cat on, my keyboard!~
420420
The cutest predator you'll ever meet!
421421
Now you are thinking with pistons!
422422
Get to the coppah!

spark/src/main/java/net/swofty/spark/MinestomCommandSender.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public String getName() {
2323
return player.getUsername();
2424
} else if (this.delegate instanceof ConsoleSender) {
2525
return "Console";
26-
}else {
26+
} else {
2727
return "unknown:" + this.delegate.getClass().getSimpleName();
2828
}
2929
}

type.dungeonhub/src/main/java/net/swofty/type/dungeonhub/events/ActionPlayerJoin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
public class ActionPlayerJoin implements HypixelEventClass {
1313

1414
@SneakyThrows
15-
@HypixelEvent(node = EventNodes.PLAYER , requireDataLoaded = false)
15+
@HypixelEvent(node = EventNodes.PLAYER, requireDataLoaded = false)
1616
public void run(AsyncPlayerConfigurationEvent event) {
1717
final SkyBlockPlayer player = (SkyBlockPlayer) event.getPlayer();
1818

type.generic/src/main/java/net/swofty/type/generic/event/actions/data/ActionPlayerClearCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import net.minestom.server.event.player.PlayerDisconnectEvent;
55
import net.swofty.type.generic.entity.animalnpc.HypixelAnimalNPC;
66
import net.swofty.type.generic.entity.hologram.PlayerHolograms;
7-
import net.swofty.type.generic.entity.npc.NPCDialogue;
87
import net.swofty.type.generic.entity.npc.HypixelNPC;
8+
import net.swofty.type.generic.entity.npc.NPCDialogue;
99
import net.swofty.type.generic.event.EventNodes;
1010
import net.swofty.type.generic.event.HypixelEvent;
1111
import net.swofty.type.generic.event.HypixelEventClass;
@@ -18,7 +18,7 @@
1818
public class ActionPlayerClearCache implements HypixelEventClass {
1919

2020
@SneakyThrows
21-
@HypixelEvent(node = EventNodes.PLAYER , requireDataLoaded = false)
21+
@HypixelEvent(node = EventNodes.PLAYER, requireDataLoaded = false)
2222
public void run(PlayerDisconnectEvent event) {
2323
final HypixelPlayer player = (HypixelPlayer) event.getPlayer();
2424

type.generic/src/main/java/net/swofty/type/generic/event/actions/npc/ActionPlayerClickedAnimalNPC.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
import net.minestom.server.entity.PlayerHand;
44
import net.minestom.server.event.player.PlayerEntityInteractEvent;
55
import net.swofty.type.generic.HypixelConst;
6-
import net.swofty.type.generic.entity.animalnpc.NPCAnimalEntityImpl;
76
import net.swofty.type.generic.entity.animalnpc.HypixelAnimalNPC;
7+
import net.swofty.type.generic.entity.animalnpc.NPCAnimalEntityImpl;
88
import net.swofty.type.generic.event.EventNodes;
99
import net.swofty.type.generic.event.HypixelEvent;
1010
import net.swofty.type.generic.event.HypixelEventClass;
1111
import net.swofty.type.generic.user.HypixelPlayer;
1212

1313
public class ActionPlayerClickedAnimalNPC implements HypixelEventClass {
1414

15-
@HypixelEvent(node = EventNodes.PLAYER , requireDataLoaded = true)
15+
@HypixelEvent(node = EventNodes.PLAYER, requireDataLoaded = true)
1616
public void run(PlayerEntityInteractEvent event) {
1717
final HypixelPlayer player = (HypixelPlayer) event.getPlayer();
1818

0 commit comments

Comments
 (0)