/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/HoerupUtilsPlugin.java
ViewVC logotype

Diff of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/HoerupUtilsPlugin.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1942 by torben, Wed Mar 20 21:08:46 2013 UTC revision 1968 by torben, Thu Apr 11 14:18:59 2013 UTC
# Line 83  public class HoerupUtilsPlugin extends J Line 83  public class HoerupUtilsPlugin extends J
83                  MotdHandler motd = new MotdHandler(this);                  MotdHandler motd = new MotdHandler(this);
84                  getCommand("motd").setExecutor( motd );                  getCommand("motd").setExecutor( motd );
85                  pm.registerEvents( motd, this);                  pm.registerEvents( motd, this);
86                    
87                    WayPoint wp = new WayPoint(this);
88                    getCommand("waypoint").setExecutor( wp );
89                    getCommand("setwaypoint").setExecutor( wp );
90                    pm.registerEvents( wp, this);
91    
92    
93                  pm.registerEvents(logintimeHandler, this);                  pm.registerEvents(logintimeHandler, this);
# Line 101  public class HoerupUtilsPlugin extends J Line 106  public class HoerupUtilsPlugin extends J
106                  pm.registerEvents(chunks, this);                  pm.registerEvents(chunks, this);
107                  getCommand("stickychunk").setExecutor(chunks);                            getCommand("stickychunk").setExecutor(chunks);          
108                                    
109                    Mute mute = new Mute(this);
110                    pm.registerEvents(mute, this);
111                    getCommand("mute").setExecutor(mute);
112                    getCommand("unmute").setExecutor(mute);
113                                    
114                    
115                  Runnable ddlInstaller = new Runnable() {                  Runnable ddlInstaller = new Runnable() {

Legend:
Removed from v.1942  
changed lines
  Added in v.1968

  ViewVC Help
Powered by ViewVC 1.1.20