Replace Random with EaglercraftRandom

This commit is contained in:
catfoolyou 2025-02-01 15:19:58 -05:00
parent 0e170a2ae6
commit 477aa74050
655 changed files with 904 additions and 1207 deletions
.gitignore
.gradle
.idea
build.gradle
build/classes/java/main/net/minecraft/src
BehaviorDefaultDispenseItem.classBiomeDecorator.classBiomeEndDecorator.classBiomeGenBase.classBiomeGenDesert.classBiomeGenForest.classBiomeGenHills.classBiomeGenJungle.classBiomeGenSwamp.classBiomeGenTaiga.classBlock.classBlockBasePressurePlate.classBlockBed.classBlockBookshelf.classBlockBrewingStand.classBlockButton.classBlockCactus.classBlockCake.classBlockCauldron.classBlockChest.classBlockClay.classBlockCocoa.classBlockCommandBlock.classBlockComparator.classBlockCrops.classBlockDaylightDetector.classBlockDeadBush.classBlockDetectorRail.classBlockDispenser.classBlockDoor.classBlockDragonEgg.classBlockEnchantmentTable.classBlockEndPortal.classBlockEndPortalFrame.classBlockEnderChest.classBlockFarmland.classBlockFire.classBlockFlower.classBlockFlowerPot.classBlockFlowing.classBlockFluid.classBlockFurnace.classBlockGlass.classBlockGlowStone.classBlockGrass.classBlockGravel.classBlockHalfSlab.classBlockHopper.classBlockIce.classBlockJukeBox.classBlockLadder.classBlockLeaves.classBlockLockedChest.classBlockLog.classBlockMelon.classBlockMobSpawner.classBlockMushroom.classBlockMushroomCap.classBlockMycelium.classBlockNetherStalk.classBlockObsidian.classBlockOre.classBlockPane.classBlockPistonBase.classBlockPistonExtension.classBlockPistonMoving.classBlockPortal.classBlockPotato.classBlockPumpkin.classBlockRailBase.classBlockRedstoneLight.classBlockRedstoneLogic.classBlockRedstoneOre.classBlockRedstoneRepeater.classBlockRedstoneTorch.classBlockRedstoneWire.classBlockReed.classBlockSand.classBlockSapling.classBlockSign.classBlockSilverfish.classBlockSkull.classBlockSnow.classBlockSnowBlock.classBlockStairs.classBlockStationary.classBlockStem.classBlockStep.classBlockStone.class

1
.gitignore vendored Normal file

@ -0,0 +1 @@
bin/

Binary file not shown.

Binary file not shown.

BIN
.gradle/file-system.probe Normal file

Binary file not shown.

2
.idea/compiler.xml generated

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="17" />
<bytecodeTargetLevel target="18" />
</component>
</project>

2
.idea/misc.xml generated

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="corretto-18" project-jdk-type="JavaSDK" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_18" default="true" project-jdk-name="corretto-18" project-jdk-type="JavaSDK" />
</project>

@ -1,6 +1,5 @@
plugins {
id "java"
id "application"
}
sourceSets {
@ -24,18 +23,3 @@ tasks.withType(JavaCompile) {
dependencies {
implementation fileTree(dir: './lwjgl-rundir/', include: '*.jar')
}
distributions {
main {
contents {
from file("$projectDir/lwjgl-rundir/resources")
into('/')
}
}
}
application {
mainClass = 'net.lax1dude.eaglercraft.MinecraftMain'
applicationDefaultJvmArgs = ['-Djava.library.path=lwjgl-rundir']
}

Some files were not shown because too many files have changed in this diff Show More