Ugh
This commit is contained in:
parent
db4627dc97
commit
83728faa68
2 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ mod_name=Thresholds
|
|||
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||
mod_license=GPLv3
|
||||
# The mod version. See https://semver.org/
|
||||
mod_version=1.4.013024.1731
|
||||
mod_version=1.4.013024.1744
|
||||
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
||||
# This should match the base package used for the mod sources.
|
||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
|
|
|
@ -69,7 +69,7 @@ public class ThrownPossBall extends ThrowableItemProjectile
|
|||
|
||||
@Override
|
||||
protected void onHitEntity(EntityHitResult pResult) {
|
||||
//super.onHitEntity(pResult);
|
||||
super.onHitEntity(pResult);
|
||||
if(getItem().getTag() == null || !getItem().getTag().contains("entity"))
|
||||
{
|
||||
|
||||
|
@ -104,7 +104,7 @@ public class ThrownPossBall extends ThrowableItemProjectile
|
|||
|
||||
@Override
|
||||
protected void onHit(HitResult pResult) {
|
||||
//super.onHit(pResult);
|
||||
super.onHit(pResult);
|
||||
if(ServerUtilities.isServer())
|
||||
{
|
||||
// We do two things here
|
||||
|
|
Reference in a new issue