aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IProjectileItem.java
diff options
context:
space:
mode:
authorDream-Master <dream-master@gmx.net>2020-03-17 22:21:40 +0100
committerDream-Master <dream-master@gmx.net>2020-03-17 22:21:40 +0100
commit0f6b03f927b2c482100b2ba46964db72c96156a0 (patch)
tree141bab113db4dbd76f6b3701d876f1c8e3f28b20 /src/main/java/gregtech/api/interfaces/IProjectileItem.java
parent28ed289c626555dda9f369780b28651a8c5f442e (diff)
parent5959633bc9eea56859e4e569c2aa8b8a427e5ea2 (diff)
downloadGT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.tar.gz
GT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.tar.bz2
GT5-Unofficial-0f6b03f927b2c482100b2ba46964db72c96156a0.zip
Merge branch 'Refactor' into Bees
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/IProjectileItem.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/IProjectileItem.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/api/interfaces/IProjectileItem.java b/src/main/java/gregtech/api/interfaces/IProjectileItem.java
index 22211a6f0c..6e58d54823 100644
--- a/src/main/java/gregtech/api/interfaces/IProjectileItem.java
+++ b/src/main/java/gregtech/api/interfaces/IProjectileItem.java
@@ -10,15 +10,15 @@ public interface IProjectileItem {
/**
* @return if this Item has an Arrow Entity
*/
- public boolean hasProjectile(SubTag aProjectileType, ItemStack aStack);
+ boolean hasProjectile(SubTag aProjectileType, ItemStack aStack);
/**
* @return an Arrow Entity to be spawned. If null then this is not an Arrow. Note: Other Projectiles still extend EntityArrow
*/
- public EntityArrow getProjectile(SubTag aProjectileType, ItemStack aStack, World aWorld, double aX, double aY, double aZ);
+ EntityArrow getProjectile(SubTag aProjectileType, ItemStack aStack, World aWorld, double aX, double aY, double aZ);
/**
* @return an Arrow Entity to be spawned. If null then this is not an Arrow. Note: Other Projectiles still extend EntityArrow
*/
- public EntityArrow getProjectile(SubTag aProjectileType, ItemStack aStack, World aWorld, EntityLivingBase aEntity, float aSpeed);
+ EntityArrow getProjectile(SubTag aProjectileType, ItemStack aStack, World aWorld, EntityLivingBase aEntity, float aSpeed);
} \ No newline at end of file