reupdate to 1.18.2 because I fucked up
This commit is contained in:
@@ -3,8 +3,8 @@ org.gradle.jvmargs=-Xmx1G
|
|||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/develop
|
# check these on https://fabricmc.net/develop
|
||||||
minecraft_version=1.18.1
|
minecraft_version=1.18.2
|
||||||
yarn_mappings=1.18.1+build.22
|
yarn_mappings=1.18.2+build.1
|
||||||
loader_version=0.12.11
|
loader_version=0.12.11
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
@@ -13,7 +13,7 @@ org.gradle.jvmargs=-Xmx1G
|
|||||||
archives_base_name = cave_dust
|
archives_base_name = cave_dust
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
fabric_version=0.46.4+1.18
|
fabric_version=0.47.8+1.18.2
|
||||||
clothconfig_version = 6.1.48
|
clothconfig_version = 6.1.48
|
||||||
modmenu_version = 3.0.1
|
modmenu_version = 3.0.1
|
||||||
minelp_version=4.4.0-beta.2
|
minelp_version=4.4.0-beta.2
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ public class ParticleSpawnUtil {
|
|||||||
|| client.world == null
|
|| client.world == null
|
||||||
|| !client.world.getDimension().isBedWorking()
|
|| !client.world.getDimension().isBedWorking()
|
||||||
|| Objects.requireNonNull(client.player).isSubmergedInWater()
|
|| 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;
|
timer = 0;
|
||||||
shouldParticlesSpawn = false;
|
shouldParticlesSpawn = false;
|
||||||
@@ -68,7 +68,8 @@ public class ParticleSpawnUtil {
|
|||||||
|| client.world == null
|
|| client.world == null
|
||||||
|| !client.world.getDimension().isBedWorking()
|
|| !client.world.getDimension().isBedWorking()
|
||||||
|| Objects.requireNonNull(client.player).isSubmergedInWater()
|
|| 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;
|
timer = 0;
|
||||||
shouldParticlesSpawn = false;
|
shouldParticlesSpawn = false;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
"issues": "https://github.com/LizIsTired/dust/issues",
|
"issues": "https://github.com/LizIsTired/dust/issues",
|
||||||
"sources": "https://github.com/LizIsTired/dust"
|
"sources": "https://github.com/LizIsTired/dust"
|
||||||
},
|
},
|
||||||
"license": "CC0-1.0",
|
"license": "MPL-2.0",
|
||||||
"icon": "assets/modid/icon.png",
|
"icon": "assets/modid/icon.png",
|
||||||
"environment": "*",
|
"environment": "*",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.12.11",
|
"fabricloader": ">=0.12.11",
|
||||||
"fabric": "*",
|
"fabric": "*",
|
||||||
"minecraft": "<=1.18.1",
|
"minecraft": "1.18.2",
|
||||||
"java": ">=17"
|
"java": ">=17"
|
||||||
},
|
},
|
||||||
"suggests": {
|
"suggests": {
|
||||||
|
|||||||
Reference in New Issue
Block a user