Skip to content

Commit

Permalink
Fix SpoutDamage not being used
Browse files Browse the repository at this point in the history
  • Loading branch information
CozmycDev committed Sep 21, 2024
1 parent de6e6e8 commit 40e48a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.doodcraft.cozmyc</groupId>
<artifactId>sandspout</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
<packaging>jar</packaging>

<name>SandSpout</name>
Expand Down Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>LATEST</version>
<version>1.20.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/doodcraft/cozmyc/sandspout/SandSpout.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public SandSpout(Player player) {

this.blindnessTime = ConfigManager.defaultConfig.get().getInt("ExtraAbilities.Cozmyc.SandSpout.BlindnessTime");
this.cooldown = ConfigManager.defaultConfig.get().getLong("ExtraAbilities.Cozmyc.SandSpout.Cooldown");
this.damage = ConfigManager.defaultConfig.get().getDouble("ExtraAbilities.Cozmyc.SandSpout.Damage");
this.damage = ConfigManager.defaultConfig.get().getDouble("ExtraAbilities.Cozmyc.SandSpout.SpoutDamage");
this.flySpeed = ConfigManager.defaultConfig.get().getDouble("ExtraAbilities.Cozmyc.SandSpout.FlySpeed");
this.height = ConfigManager.defaultConfig.get().getDouble("ExtraAbilities.Cozmyc.SandSpout.Height");
this.mainSoundName = ConfigManager.defaultConfig.get().getString("ExtraAbilities.Cozmyc.SandSpout.Sound.Name");
Expand Down Expand Up @@ -331,7 +331,7 @@ public String getAuthor() {

@Override
public String getVersion() {
return "1.0.7";
return "1.0.8";
}

private void setupCollisions() {
Expand Down

0 comments on commit 40e48a4

Please sign in to comment.