McJtyMods / XNet

Advanced item/liquid/energy/... networking
MIT License
91 stars 49 forks source link

Redstone output value max number error #547

Open cueavyqwp opened 1 year ago

cueavyqwp commented 1 year ago

Version

A BUG at

src\main\java\mcjty\xnet\apiimpl\logic\LogicConnectorSettings.java line 143

.integer(TAG_REDSTONE_OUT, "Redstone output value", redstoneOut, 40, 16)

Redstone output value max was 15 not 16

so it must be this:

.integer(TAG_REDSTONE_OUT, "Redstone output value", redstoneOut, 40, 15)

wrong wrong