This commit is contained in:
DBotThePony 2021-08-18 16:07:42 +07:00
parent 8a6e51d804
commit 78c101f6a3
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -48,7 +48,7 @@ public class BlockPatternStorage extends BlockMatteryRotatable implements Entity
var state = super.getStateForPlacement(context); var state = super.getStateForPlacement(context);
for (var prop : PATTERN_STORAGE_DISKS_PROPS) for (var prop : PATTERN_STORAGE_DISKS_PROPS)
state.setValue(prop, Math.random() > 0.5); state = state.setValue(prop, Math.random() > 0.5);
return state; return state;
} }