Skip to content

Commit

Permalink
Fixed parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBDev committed Aug 5, 2021
1 parent 14fc2db commit 14b3fd2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ private WorldGuardPlugin getWorldGuard() {
return (WorldGuardPlugin) plugin;
}

public WorldGuardFeature(Plugin p2) {
super(p2.getName());
public WorldGuardFeature(Plugin plugin) {
super(plugin.getName());
this.worldguard = this.getWorldGuard();
LOGGER.info("Plugin 'WorldGuard' found. Using it now.");

Expand Down

0 comments on commit 14b3fd2

Please sign in to comment.