Skip to content

Commit

Permalink
Removed .lkt.zip extension and made PluginLoader server variable private
Browse files Browse the repository at this point in the history
  • Loading branch information
jupjohn committed Oct 7, 2017
1 parent 396ec80 commit b891057
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -25,14 +25,13 @@ public class LukkitPluginLoader implements PluginLoader {
* The constant fileFilters.
*/
public static final Pattern[] fileFilters = new Pattern[] {
Pattern.compile("^(.*)\\.lkt$"),
Pattern.compile("^(.*)\\.lkt\\.zip$")
Pattern.compile("^(.*)\\.lkt$")
};

/**
* The Server instance.
*/
final Server server;
private final Server server;

/**
* Instantiates a new LukkitPluginLoader.
Expand Down

0 comments on commit b891057

Please sign in to comment.