reupdate to 1.18.2 because I fucked up

This commit is contained in:
Liz Graham
2022-03-26 01:22:05 +00:00
parent 62bce166d5
commit 374833fba5
3 changed files with 8 additions and 7 deletions

View File

@@ -29,7 +29,7 @@ public class ParticleSpawnUtil {
|| client.world == null
|| !client.world.getDimension().isBedWorking()
|| Objects.requireNonNull(client.player).isSubmergedInWater()
|| Objects.equals(client.world.getBiomeKey(Objects.requireNonNull(client.player.getBlockPos())), Optional.of(LUSH_CAVES)))
|| client.world.getBiome(Objects.requireNonNull(client.player.getBlockPos())).matchesKey(LUSH_CAVES))
{
timer = 0;
shouldParticlesSpawn = false;
@@ -68,7 +68,8 @@ public class ParticleSpawnUtil {
|| client.world == null
|| !client.world.getDimension().isBedWorking()
|| Objects.requireNonNull(client.player).isSubmergedInWater()
|| Objects.equals(client.world.getBiomeKey(Objects.requireNonNull(pos)), Optional.of(LUSH_CAVES)))
|| client.world.getBiome(Objects.requireNonNull(pos)).matchesKey(LUSH_CAVES))
{
timer = 0;
shouldParticlesSpawn = false;

View File

@@ -11,7 +11,7 @@
"issues": "https://github.com/LizIsTired/dust/issues",
"sources": "https://github.com/LizIsTired/dust"
},
"license": "CC0-1.0",
"license": "MPL-2.0",
"icon": "assets/modid/icon.png",
"environment": "*",
"entrypoints": {
@@ -28,7 +28,7 @@
"depends": {
"fabricloader": ">=0.12.11",
"fabric": "*",
"minecraft": "<=1.18.1",
"minecraft": "1.18.2",
"java": ">=17"
},
"suggests": {