From 3dc742ffdfba7eb3a43daba3399096a38a38ce2b Mon Sep 17 00:00:00 2001 From: Encode42 Date: Sun, 8 May 2022 17:15:54 -0400 Subject: [PATCH 1/2] Add redstone-implementation and Alternate Current --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index de3c47b..e5434b6 100644 --- a/README.md +++ b/README.md @@ -436,11 +436,13 @@ Good starting values: This list lets you set alternative time (in ticks) to despawn certain types of dropped items faster or slower than default. This option can be used instead of item clearing plugins along with `merge-radius` to improve performance. -#### use-faster-eigencraft-redstone +#### redstone-implementation -`Good starting value: true` +`Good starting value: alternate-current` -When enabled, the redstone system is replaced by a faster and alternative version that reduces redundant block updates, lowering the amount of work your server has to do. Enabling this can significantly improve performance without introducing gameplay inconsistencies. Enabling this will even fix some redstone inconsistencies from craftbukkit. +When enabled, the redstone system is replaced by a faster and alternative version that reduces redundant block updates, lowering the amount of work your server has to do. Enabling this can significantly improve performance without introducing gameplay inconsistencies. This option will additionally fix some redstone inconsistencies from CraftBukkit. + +The `alternate-current` implementation is based off of the [Alternate Current](https://modrinth.com/mod/alternate-current) mod. More information on this algorithm can be found on their resource page. #### disable-move-event From c4b2112fb835429ce59cc5315ec3aa6e6228db51 Mon Sep 17 00:00:00 2001 From: Encode42 Date: Mon, 9 May 2022 13:31:05 -0400 Subject: [PATCH 2/2] Update explanation wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5434b6..2595e0e 100644 --- a/README.md +++ b/README.md @@ -440,7 +440,7 @@ This list lets you set alternative time (in ticks) to despawn certain types of d `Good starting value: alternate-current` -When enabled, the redstone system is replaced by a faster and alternative version that reduces redundant block updates, lowering the amount of work your server has to do. Enabling this can significantly improve performance without introducing gameplay inconsistencies. This option will additionally fix some redstone inconsistencies from CraftBukkit. +Replaces the redstone system with faster and alternative versions that reduce redundant block updates, lowering the amount of logic your server has to calculate. Using a non-vanilla implementation may introduce minor inconsistencies with very technical redstone, but the performance gains far outweigh the possible niche issues. A non-vanilla implementation option may additionally fix other redstone inconsistencies caused by CraftBukkit. The `alternate-current` implementation is based off of the [Alternate Current](https://modrinth.com/mod/alternate-current) mod. More information on this algorithm can be found on their resource page.