Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
- Have minecraft version on jar filename
- Don't use gust_dust particle since that only exists in minecraft so briefly
- update icon in modlist
- rename data namespace from smeltinginapinch (old name) to disposablefurnaces
  • Loading branch information
jiink committed May 19, 2024
1 parent 5e91a64 commit 4630271
Show file tree
Hide file tree
Showing 19 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'maven-publish'
}

version = project.mod_version
version = "${project.mod_version}+${minecraft_version}"
group = project.maven_group

base {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ loader_version=0.15.10
fabric_version=0.97.0+1.20.4

# Mod Properties
mod_version=1.0.1
mod_version=1.0.2
maven_group=com.jiink.disposablefurnaces
archives_base_name=disposablefurnaces

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void randomDisplayTick(BlockState state, World world, BlockPos pos, Rando
double double_7 = random.nextDouble() * 6.0D / 16.0D;
double double_8 = direction$Axis_1 == Direction.Axis.Z ? (double) direction_1.getOffsetZ() * 0.52D : double_5;

world.addParticle(ParticleTypes.GUST_DUST, x + double_6, y + double_7, z + double_8, double_6 * 0.1D, 0.0D, double_8 * 0.1D);
world.addParticle(ParticleTypes.CLOUD, x + double_6, y + double_7, z + double_8, double_6 * 0.1D, 0.0D, double_8 * 0.1D);
world.addParticle(ParticleTypes.LAVA, x + double_6, y + double_7, z + double_8, double_6 * 0.5D, 0.0D, double_8 * 0.5D);
world.addParticle(ParticleTypes.LARGE_SMOKE, x + double_6, y + double_7, z + double_8, double_6 * 0.1D, 0.0D, double_8 * 0.1D);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void randomDisplayTick(BlockState state, World world, BlockPos pos, Rando
double double_7 = random.nextDouble() * 6.0D / 16.0D;
double double_8 = direction$Axis_1 == Direction.Axis.Z ? (double) direction_1.getOffsetZ() * 0.52D : double_5;

world.addParticle(ParticleTypes.GUST_DUST, x + double_6, y + double_7, z + double_8, double_6 * 0.1D, 0.0D, double_8 * 0.1D);
world.addParticle(ParticleTypes.CLOUD, x + double_6, y + double_7, z + double_8, double_6 * 0.1D, 0.0D, double_8 * 0.1D);
world.addParticle(ParticleTypes.LAVA, x + double_6, y + double_7, z + double_8, double_6 * 0.5D, 0.0D, double_8 * 0.5D);
world.addParticle(ParticleTypes.LARGE_SMOKE, x + double_6, y + double_7, z + double_8, double_6 * 0.1D, 0.0D, double_8 * 0.1D);
}
Expand Down
Binary file modified src/main/resources/assets/disposablefurnaces/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4630271

Please sign in to comment.