Make some QOL fixes to Thresholds

This commit is contained in:
zontreck 2024-01-22 00:52:13 -07:00
parent c344b5c0b6
commit 43575fe2c7
12 changed files with 289 additions and 254 deletions

View file

@ -28,7 +28,6 @@ import net.minecraftforge.fml.common.Mod;
import java.util.concurrent.atomic.AtomicInteger;
@Mod.EventBusSubscriber(modid = OTEMod.MOD_ID)
public class FlightEnchantment extends Enchantment
{

View file

@ -67,7 +67,7 @@ public class MobEggEnchantment extends Enchantment
CHANCE *= (level / 0.5);
CHANCE += bias;
double rng = Math.random()*100000;
double rng = Math.random()*10000;
if(OTEServerConfig.DEBUG.get())
{

View file

@ -19,7 +19,6 @@ import net.minecraftforge.fml.common.Mod;
import java.util.concurrent.atomic.AtomicInteger;
@Mod.EventBusSubscriber(modid = OTEMod.MOD_ID)
public class NightVisionEnchantment extends Enchantment
{