mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-23 15:15:12 +01:00
commit
f791512c0b
@ -48,7 +48,7 @@ allprojects {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly 'com.willfp:eco:6.6.0'
|
||||
compileOnly 'com.willfp:eco:6.7.5'
|
||||
|
||||
compileOnly 'org.jetbrains:annotations:19.0.0'
|
||||
|
||||
|
@ -33,6 +33,7 @@ public class Electroshock extends EcoEnchant {
|
||||
return;
|
||||
}
|
||||
|
||||
LightningUtils.strike(attacker, damage);
|
||||
boolean silent = this.getConfig().getBool(EcoEnchants.CONFIG_LOCATION + "local-lightning-sound");
|
||||
LightningUtils.strike(attacker, damage, silent);
|
||||
}
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ public class Thor extends EcoEnchant {
|
||||
|
||||
double damage = this.getConfig().getDouble(EcoEnchants.CONFIG_LOCATION + "lightning-damage");
|
||||
|
||||
LightningUtils.strike(victim, damage);
|
||||
boolean silent = this.getConfig().getBool(EcoEnchants.CONFIG_LOCATION + "local-lightning-sound");
|
||||
LightningUtils.strike(attacker, damage, silent);
|
||||
}
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ public class Zeus extends EcoEnchant {
|
||||
|
||||
double damage = this.getConfig().getDouble(EcoEnchants.CONFIG_LOCATION + "lightning-damage");
|
||||
|
||||
LightningUtils.strike(victim, damage);
|
||||
boolean silent = this.getConfig().getBool(EcoEnchants.CONFIG_LOCATION + "local-lightning-sound");
|
||||
LightningUtils.strike(victim, damage, silent);
|
||||
}
|
||||
}
|
||||
|
@ -35,6 +35,7 @@ public class Bolt extends EcoEnchant {
|
||||
|
||||
double damage = this.getConfig().getDouble(EcoEnchants.CONFIG_LOCATION + "lightning-damage");
|
||||
|
||||
LightningUtils.strike(victim, damage);
|
||||
boolean silent = this.getConfig().getBool(EcoEnchants.CONFIG_LOCATION + "local-lightning-sound");
|
||||
LightningUtils.strike(victim, damage, silent);
|
||||
}
|
||||
}
|
||||
|
@ -22,5 +22,6 @@ general-config:
|
||||
maximum-level: 3
|
||||
|
||||
config:
|
||||
local-lightning-sound: false # Should be lightning sound played locally
|
||||
chance-per-level: 5
|
||||
damage: 4
|
@ -25,6 +25,7 @@ general-config:
|
||||
maximum-level: 6
|
||||
|
||||
config:
|
||||
local-lightning-sound: false # Should be lightning sound played locally
|
||||
chance-per-level: 2
|
||||
allow-not-fully-charged: false # dont require sword attack to be at full charge
|
||||
lightning-damage: 2.5
|
@ -26,5 +26,6 @@ general-config:
|
||||
maximum-level: 6
|
||||
|
||||
config:
|
||||
local-lightning-sound: false # Should be lightning sound played locally
|
||||
chance-per-level: 1
|
||||
lightning-damage: 2.5
|
@ -25,6 +25,7 @@ general-config:
|
||||
maximum-level: 4
|
||||
|
||||
config:
|
||||
local-lightning-sound: false # Should be lightning sound played locally
|
||||
chance-per-level: 5
|
||||
allow-not-fully-charged: false # dont require sword attack to be at full charge
|
||||
lightning-damage: 8
|
Loading…
Reference in New Issue
Block a user