aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/api/damage/BaseCustomDamageSource.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/api/damage/BaseCustomDamageSource.java')
-rw-r--r--src/Java/gtPlusPlus/api/damage/BaseCustomDamageSource.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/Java/gtPlusPlus/api/damage/BaseCustomDamageSource.java b/src/Java/gtPlusPlus/api/damage/BaseCustomDamageSource.java
deleted file mode 100644
index 24348988d6..0000000000
--- a/src/Java/gtPlusPlus/api/damage/BaseCustomDamageSource.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package gtPlusPlus.api.damage;
-
-import net.minecraft.entity.Entity;
-import net.minecraft.util.EntityDamageSourceIndirect;
-
-public class BaseCustomDamageSource extends EntityDamageSourceIndirect {
-
- public BaseCustomDamageSource(String name, Entity transmitter, Entity indirectSource) {
- super(name, transmitter, indirectSource);
- this.setDifficultyScaled();
- }
-
- /**
- * Return whether this damage source will have its damage amount scaled based on the current difficulty.
- */
- public boolean isDifficultyScaled()
- {
- return true;
- }
-
-
-} \ No newline at end of file