-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.18' of https://github.com/MrScautHD/Beyond-Earth into…
… 1.18
- Loading branch information
Showing
80 changed files
with
625 additions
and
411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 0 additions & 47 deletions
47
src/main/java/net/mrscauthd/beyond_earth/compat/tinkers/BossToolsSmelteryCompat.java
This file was deleted.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
src/main/java/net/mrscauthd/beyond_earth/compat/tinkers/TinkersBeyondEarthFluids.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package net.mrscauthd.beyond_earth.compat.tinkers; | ||
|
||
import net.minecraft.sounds.SoundEvents; | ||
import net.minecraft.world.level.material.Material; | ||
import net.minecraftforge.fluids.FluidAttributes; | ||
import net.minecraftforge.fluids.ForgeFlowingFluid; | ||
import net.mrscauthd.beyond_earth.BeyondEarthMod; | ||
import slimeknights.mantle.registration.ModelFluidAttributes; | ||
import slimeknights.mantle.registration.deferred.FluidDeferredRegister; | ||
import slimeknights.mantle.registration.object.FluidObject; | ||
|
||
public class TinkersBeyondEarthFluids { | ||
|
||
protected static final FluidDeferredRegister FLUIDS = new FluidDeferredRegister(BeyondEarthMod.MODID); | ||
public static final FluidObject<ForgeFlowingFluid> MOLTEN_DESH = FLUIDS.register("molten_desh", hotBuilder().temperature(800), Material.LAVA, 12); | ||
public static final FluidObject<ForgeFlowingFluid> MOLTEN_OSTRUM = FLUIDS.register("molten_ostrum", hotBuilder().temperature(800), Material.LAVA, 12); | ||
|
||
// /** Creates a builder for a hot fluid | ||
|
||
private static FluidAttributes.Builder hotBuilder() | ||
{ | ||
return ModelFluidAttributes.builder().density(2000).viscosity(10000).temperature(1000).sound(SoundEvents.BUCKET_FILL_LAVA, SoundEvents.BUCKET_EMPTY_LAVA); | ||
} | ||
|
||
|
||
} |
18 changes: 0 additions & 18 deletions
18
src/main/java/net/mrscauthd/beyond_earth/compat/tinkers/TinkersBossToolsFluids.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.