Fixed parameter name

Dieser Commit ist enthalten in:
Matt 2021-07-31 00:42:50 -04:00
Ursprung 14fc2dbf9b
Commit 14b3fd2085

Datei anzeigen

@ -47,8 +47,8 @@ public class WorldGuardFeature extends BukkitMaskManager implements Listener {
return (WorldGuardPlugin) plugin; return (WorldGuardPlugin) plugin;
} }
public WorldGuardFeature(Plugin p2) { public WorldGuardFeature(Plugin plugin) {
super(p2.getName()); super(plugin.getName());
this.worldguard = this.getWorldGuard(); this.worldguard = this.getWorldGuard();
LOGGER.info("Plugin 'WorldGuard' found. Using it now."); LOGGER.info("Plugin 'WorldGuard' found. Using it now.");