Skip to content

Commit

Permalink
Update to 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Nov 30, 2024
1 parent 9111dd0 commit f824474
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.21.3
yarn_mappings=1.21.3+build.1
minecraft_version=1.21.4-rc3
yarn_mappings=1.21.4-rc3+build.1
loader_version=0.16.9

#Fabric api
fabric_version=0.106.1+1.21.3
fabric_version=0.110.2+1.21.4

# Mod Properties
mod_version = 1.14.1
mod_version = 1.15.0
maven_group = eu.pb4
archives_base_name = goml

Expand All @@ -20,10 +20,10 @@ archives_base_name = goml
rtree_version=0.3.0
cca_version=6.2.0
pal_version=1.10.0
polymer_version=0.10.2+1.21.3
sgui_version=1.7.2+1.21.2
polymer_version=0.11.0+1.21.4-rc1
sgui_version=1.8.1+1.21.4
stapi_version=2.4.0+1.21.2-rc1
placeholder_version=2.5.0+1.21.2
placeholder_version=2.5.1+1.21.3
common-protection-api_version=1.0.0

# compat
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/draylar/goml/api/WorldParticleUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private static void spawnParticleIfVisible(ServerPlayerEntity player, ParticleEf
}*/

world.spawnParticles(
player, effect, true,
player, effect, true, true,
x, y, z,
1,
0.0, 0.0, 0.0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void onPlayerEnter(Claim claim, PlayerEntity player) {
for (int x = -1; x <= 1; x++) {
for (int y = -1; y <= 1; y++) {
((ServerWorld) player.getWorld()).spawnParticles(
(ServerPlayerEntity) player, new BlockStateParticleEffect(ParticleTypes.BLOCK_MARKER, Blocks.BARRIER.getDefaultState()), true,
(ServerPlayerEntity) player, new BlockStateParticleEffect(ParticleTypes.BLOCK_MARKER, Blocks.BARRIER.getDefaultState()), true, true,
pos2.x + dir2.getOffsetZ() * x, player.getEyeY() + y, pos2.z + dir2.getOffsetX() * x,
1,
0.0, 0.0, 0.0,
Expand Down

0 comments on commit f824474

Please sign in to comment.