Skip to content

Commit

Permalink
Fix entities not in the config being set to false
Browse files Browse the repository at this point in the history
  • Loading branch information
gigabit101 committed Jun 6, 2024
1 parent f9604b7 commit 630c978
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

mod_version = 1.3.7
mod_version = 1.3.8
mod_id = soulshards
maven_group = creeperhost

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public ConfigEntityList()

public boolean isEnabled(ResourceLocation entityId)
{
return entities.getOrDefault(entityId.toString(), false);
return entities.getOrDefault(entityId.toString(), true);
}

private static Map<String, Boolean> getDefaults()
Expand Down

0 comments on commit 630c978

Please sign in to comment.