Skip to content

Commit

Permalink
v0.14.9
Browse files Browse the repository at this point in the history
Nerd is currently on an unreleased 0.14.8 version used to debug and fix LogBlock-related performance issues. This version is the culmination of that effort, plus other changes, hence the two-version bump.
  • Loading branch information
bermudalocket committed Mar 12, 2019
1 parent 2094135 commit 0359ee2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ log-entity-deaths:
- DOLPHIN
- TROPICAL_FISH
- TURTLE
ignore-entity-deaths:
- IRON_GOLEM

animal-count: false
log-animals: false
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>nu.nerd</groupId>
<artifactId>KitchenSink</artifactId>
<name>KitchenSink</name>
<version>0.14.7</version>
<version>0.14.9</version>
<packaging>jar</packaging>
<description>A plugin for miscellaneous functionality that hasn't found a home elsewhere.</description>
<url>https://github.com/NerdNu/KitchenSink</url>
Expand Down
5 changes: 5 additions & 0 deletions src/nu/nerd/kitchensink/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ public void load() {
.map(Configuration::getEntityType)
.filter(Objects::nonNull)
.collect(Collectors.toCollection(HashSet::new));
IGNORE_DEATH_LOG = plugin.getConfig().getStringList("ignore-entity-deaths")
.stream()
.map(Configuration::getEntityType)
.filter(Objects::nonNull)
.collect(Collectors.toCollection(HashSet::new));

SAFE_ICE = plugin.getConfig().getBoolean("safe-ice");
SAFE_DISPENSERS = plugin.getConfig().getBoolean("safe-dispensers");
Expand Down

0 comments on commit 0359ee2

Please sign in to comment.