Universal Graves

Universal Graves

3M Downloads

Incompatibility with Hydrogen

magneticflux- opened this issue ยท 1 comments

commented

Due to Hydrogen using an identity hashmap for block states, the IS_LOCKED state may not be found. This is because it is defined twice:

public static BooleanProperty IS_LOCKED = BooleanProperty.of("is_locked");

public static BooleanProperty IS_LOCKED = BooleanProperty.of("is_locked");

To fix this, simply reuse the BooleanProperty instead of making a new one.

commented

Good spot, going to fix that tomorrow