Fix #130 by switching away from NonNullList which doesn't use a supplier to create new instances of Energy, it copies by reference which resulted in 2-12 sharing the same instance, to using an ImmutableList populated with seperate instances of Energy.
Fix #130 by switching away from
NonNullList
which doesn't use a supplier to create new instances ofEnergy
, it copies by reference which resulted in 2-12 sharing the same instance, to using anImmutableList
populated with seperate instances ofEnergy
.