Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove arrow trail mutation #65

Merged
merged 1 commit into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public enum MutationType {
GHOST("Ghost", "Everyone turns invisible", Material.GLASS),
STORM("Storm", "Stormy weather with lots of lightning", Material.WATER_BUCKET),
FRIENDLY("Friendly Fire", "Kill whoever you like", Material.ROTTEN_FLESH),
ARROW_TRAIL("Arrow Trail", "Particle effects follow projectiles", Material.ARROW),
ENDERPEARL("Enderpearl", "All projectiles are enderpearls", Material.ENDER_PEARL),
BLOCK_DECAY("Block Decay", "Blocks placed decay after some time", Material.SOUL_SAND),
KNOCKBACK("Knockback", "Knockback applied to everything", Material.FISHING_ROD),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import dev.pgm.community.mutations.MutationType;
import dev.pgm.community.mutations.menu.MutationOptionsMenu;
import dev.pgm.community.mutations.menu.MutationToggleMenu;
import dev.pgm.community.mutations.types.arrows.ArrowTrailMutation;
import dev.pgm.community.mutations.types.arrows.EnderpearlMutation;
import dev.pgm.community.mutations.types.arrows.FireballBowMutation;
import dev.pgm.community.mutations.types.arrows.TNTBowMutation;
Expand Down Expand Up @@ -185,8 +184,6 @@ private Mutation getNewMutation(MutationType type) {
return new StormMutation(getMatch());
case FRIENDLY:
return new FriendlyFireMutation(getMatch());
case ARROW_TRAIL:
return new ArrowTrailMutation(getMatch());
case ENDERPEARL:
return new EnderpearlMutation(getMatch());
case BLOCK_DECAY:
Expand Down

This file was deleted.