Skip to content
This repository was archived by the owner on Aug 23, 2018. It is now read-only.

Commit 292baad

Browse files
Add config options
1 parent 6adca29 commit 292baad

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

src/main/java/co/gm4/GM4_SpeedPaths/SpeedPaths.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323

2424
public class SpeedPaths extends JavaPlugin implements Listener {
2525

26-
private float SPEED_MODIFIER;
26+
private int SPEED_AMPLIFIER;
27+
private int SPEED_DURATION;
2728
private List<UUID> ON_PATH = new ArrayList<>();
2829

2930
@Override
@@ -32,7 +33,9 @@ public void onEnable() {
3233

3334
saveDefaultConfig();
3435

35-
SPEED_MODIFIER = (float) getConfig().getDouble("speed-modifier", 0);
36+
SPEED_AMPLIFIER = getConfig().getInt("speed-amplifier", 0);
37+
SPEED_DURATION = getConfig().getInt("speed-duration", 30);
38+
3639
}
3740

3841
@SuppressWarnings("deprecation")
@@ -41,10 +44,10 @@ public void onPlayerMove(PlayerMoveEvent e) {
4144
Block below = e.getPlayer().getLocation().getBlock();
4245
if(below != null && below.getType() == Material.GRASS_PATH) {
4346
ON_PATH.add(e.getPlayer().getUniqueId());
44-
e.getPlayer().addPotionEffect(new PotionEffect(PotionEffectType.SPEED, 30, 0));
47+
e.getPlayer().addPotionEffect(new PotionEffect(PotionEffectType.SPEED, SPEED_DURATION, SPEED_AMPLIFIER));
4548
} else if(e.getPlayer().isOnGround() && ON_PATH.contains(e.getPlayer().getUniqueId())){
4649
ON_PATH.remove(e.getPlayer().getUniqueId());
47-
e.getPlayer().addPotionEffect(new PotionEffect(PotionEffectType.SPEED, 1, 0));
50+
e.getPlayer().addPotionEffect(new PotionEffect(PotionEffectType.SPEED, 1, SPEED_AMPLIFIER));
4851
}
4952
}
5053
}

src/main/resources/config.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
#How much current movement speed is multiplied by
2-
speed-modifier: 1.5
1+
#Amplifier of speed effect given while on path
2+
speed-amplifier: 0
3+
#How long speed should last once they move on path block (in ticks)
4+
speed-duration: 30

0 commit comments

Comments
 (0)