/[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 1939 by torben, Wed Mar 20 16:27:21 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 97  public class HoerupUtilsPlugin extends J Line 102  public class HoerupUtilsPlugin extends J
102                  pm.registerEvents(jail, this);                  pm.registerEvents(jail, this);
103                  getCommand("jail").setExecutor( jail );                  getCommand("jail").setExecutor( jail );
104                                    
105                                    StickyChunk chunks = new StickyChunk();
106                                    pm.registerEvents(chunks, this);
107                                    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.1939  
changed lines
  Added in v.1968

  ViewVC Help
Powered by ViewVC 1.1.20