From a3371bffbf0f7cffef0fed7e55403f54bdf2f854 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm <proximyst@proximyst.com> Date: Mon, 1 May 2017 09:21:01 +0200 Subject: [PATCH] More stuff I forgot --- resources/plugin.yml | 2 +- src/com/proximyst/bukkitforclojure/example/command.clj | 3 ++- src/com/proximyst/bukkitforclojure/example/listener.clj | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/resources/plugin.yml b/resources/plugin.yml index ad0e4f9..ac976f2 100644 --- a/resources/plugin.yml +++ b/resources/plugin.yml @@ -1,7 +1,7 @@ name: Bukkit4Clojure author: Proximyst version: 0.1.0-SNAPSHOT -main: com.proximyst.bukkit4clojure.example.javaplugin +main: com.proximyst.bukkit4clojure.Main commands: clojure: \ No newline at end of file diff --git a/src/com/proximyst/bukkitforclojure/example/command.clj b/src/com/proximyst/bukkitforclojure/example/command.clj index ddace3f..e4f210c 100644 --- a/src/com/proximyst/bukkitforclojure/example/command.clj +++ b/src/com/proximyst/bukkitforclojure/example/command.clj @@ -1,5 +1,6 @@ (ns com.proximyst.bukkitforclojure.example.command - (:gen-class) + (:gen-class + :main false) (:import [org.bukkit.command CommandSender Command] [org.bukkit.entity Player] [org.bukkit Sound])) diff --git a/src/com/proximyst/bukkitforclojure/example/listener.clj b/src/com/proximyst/bukkitforclojure/example/listener.clj index 6d05a94..cb092fd 100644 --- a/src/com/proximyst/bukkitforclojure/example/listener.clj +++ b/src/com/proximyst/bukkitforclojure/example/listener.clj @@ -1,5 +1,6 @@ (ns com.proximyst.bukkitforclojure.example.listener - (:gen-class) + (:gen-class + :main false) (:import [org.bukkit.event.player PlayerJoinEvent] [org.bukkit Bukkit ChatColor] [org.bukkit.entity Player])) -- GitLab