Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weā€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: šŸ› Fix mob charm entity tick code to not trigger on client to preā€¦ #678

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ loader_version_range=[2,)
mod_id=reliquary
mod_name=Reliquary
mod_license=GNU General Public License v3.0
mod_version=2.0.41
mod_version=2.0.42
mod_group_id=reliquary
mod_authors=x3n0ph0b3, TheMike, P3pp3rF1y
mod_description=Two words: magical swag. Oh, and a gun.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/reliquary/items/MobCharmItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private void onEntityTargetedEvent(LivingChangeTargetEvent event) {
}

private void onLivingUpdate(LivingEvent.LivingTickEvent event) {
if (!(event.getEntity() instanceof Mob entity)) {
if (event.getEntity().level().isClientSide() || !(event.getEntity() instanceof Mob entity)) {
return;
}

Expand Down
Loading