/[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 1950 by torben, Sat Mar 23 10:14:42 2013 UTC revision 3196 by torben, Mon May 29 13:03:52 2017 UTC
# Line 43  public class HoerupUtilsPlugin extends J Line 43  public class HoerupUtilsPlugin extends J
43                  getCommand("eternalday").setExecutor(new EternalDayCommand(this));                  getCommand("eternalday").setExecutor(new EternalDayCommand(this));
44                  getCommand("getpos").setExecutor( new GetposCommand() );                  getCommand("getpos").setExecutor( new GetposCommand() );
45                  getCommand("msg").setExecutor( new MsgCommand( this ) );                  getCommand("msg").setExecutor( new MsgCommand( this ) );
46                  getCommand("tp").setExecutor( new TeleportCommand() );  //              getCommand("tp").setExecutor( new TeleportCommand() );
47    
48                  getCommand("wall").setExecutor( new WallCommand() );                  getCommand("wall").setExecutor( new WallCommand() );
49                  getCommand("weather").setExecutor( new WeatherCommand() );                  getCommand("weather").setExecutor( new WeatherCommand() );
# Line 65  public class HoerupUtilsPlugin extends J Line 65  public class HoerupUtilsPlugin extends J
65                  getCommand("replay").setExecutor( generalContractor );                  getCommand("replay").setExecutor( generalContractor );
66                  getCommand("levelarea").setExecutor( generalContractor );                  getCommand("levelarea").setExecutor( generalContractor );
67                  getCommand("fillarea").setExecutor( generalContractor );                  getCommand("fillarea").setExecutor( generalContractor );
68                    getCommand("levelandfillarea").setExecutor( generalContractor );
69    
70                  getCommand("slopearea").setExecutor( generalContractor );                  getCommand("slopearea").setExecutor( generalContractor );
71                  getCommand("setsurface").setExecutor( generalContractor );                  getCommand("setsurface").setExecutor( generalContractor );
72                  getCommand("platform").setExecutor( generalContractor );                  getCommand("platform").setExecutor( generalContractor );
# Line 73  public class HoerupUtilsPlugin extends J Line 75  public class HoerupUtilsPlugin extends J
75                  getCommand("spawn").setExecutor( new SpawnCommand() );                  getCommand("spawn").setExecutor( new SpawnCommand() );
76                                    
77                  getCommand("template").setExecutor( new TemplateCommand(this) );                  getCommand("template").setExecutor( new TemplateCommand(this) );
78                    getCommand("regenerate").setExecutor( new RegenerateCommand() );
79    
80    
81                  LogintimeHandler logintimeHandler = new LogintimeHandler( this.getDataFolder() );                  LogintimeHandler logintimeHandler = new LogintimeHandler( this.getDataFolder() );
82                                    
# Line 106  public class HoerupUtilsPlugin extends J Line 110  public class HoerupUtilsPlugin extends J
110                  pm.registerEvents(chunks, this);                  pm.registerEvents(chunks, this);
111                  getCommand("stickychunk").setExecutor(chunks);                            getCommand("stickychunk").setExecutor(chunks);          
112                                    
113                    Mute mute = new Mute(this);
114                    pm.registerEvents(mute, this);
115                    getCommand("mute").setExecutor(mute);
116                    getCommand("unmute").setExecutor(mute);
117                                    
118                    
119                  Runnable ddlInstaller = new Runnable() {                  Runnable ddlInstaller = new Runnable() {

Legend:
Removed from v.1950  
changed lines
  Added in v.3196

  ViewVC Help
Powered by ViewVC 1.1.20