Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
Fix log spam
Browse files Browse the repository at this point in the history
  • Loading branch information
doctor4t committed May 15, 2022
1 parent 6ace44e commit 1fdd953
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Illuminations - Changelog:

### Illuminations 1.10.4 - 1.18.2
- Fixed log spam

### Illuminations 1.10.3 - 1.18.2
- Update to Minecraft 1.18.2
- Removed the auto-updater, auto-update greeting screen and config options relating to it
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ loader_version=0.13.3
fabric_version=0.47.8+1.18.2

# Mod Properties
mod_version = 1.10.3
mod_version = 1.10.4
maven_group = io.github.ladysnake
archives_base_name = illuminations

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,6 @@ private static class PlayerCosmeticDataParser implements JsonDeserializer<Player
@Override
public PlayerCosmeticData deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
JsonObject jsonObject = json.getAsJsonObject();
System.out.println(jsonObject);
return new PlayerCosmeticData(jsonObject.get("aura")
, jsonObject.get("color")
, jsonObject.get("overhead")
Expand Down

0 comments on commit 1fdd953

Please sign in to comment.