/[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 1385 by torben, Sun Apr 24 10:23:02 2011 UTC revision 1501 by torben, Sat Jun 4 13:55:44 2011 UTC
# Line 23  public class HoerupUtilsPlugin extends J Line 23  public class HoerupUtilsPlugin extends J
23                  getCommand("whereis").setExecutor(new WhereisCommand(getServer()));                  getCommand("whereis").setExecutor(new WhereisCommand(getServer()));
24                  getCommand("mapgen").setExecutor(new MapgenCommand(this));                  getCommand("mapgen").setExecutor(new MapgenCommand(this));
25                  getCommand("eternalday").setExecutor(new EternalDayCommand(this));                  getCommand("eternalday").setExecutor(new EternalDayCommand(this));
26                    getCommand("grass").setExecutor(new GrassCommand());
27                    getCommand("getpos").setExecutor( new GetposCommand() );
28                    getCommand("zapme").setExecutor( new ZapmeCommand() );
29                    getCommand("zap").setExecutor( new ZapCommand() );
30                    getCommand("msg").setExecutor( new MsgCommand( getServer() ) );
31                    getCommand("stoner").setExecutor( new StonerCommand() );
32                                    
33                  PluginManager pm = getServer().getPluginManager();                  PluginManager pm = getServer().getPluginManager();
34                  pm.registerEvent(Event.Type.PLAYER_RESPAWN, new RespawnHandler(this), Priority.Normal, this);                  pm.registerEvent(Event.Type.PLAYER_RESPAWN, new RespawnHandler(this), Priority.Normal, this);
# Line 35  public class HoerupUtilsPlugin extends J Line 41  public class HoerupUtilsPlugin extends J
41                                    
42                  PowerMiner powerMiner = new PowerMiner();                  PowerMiner powerMiner = new PowerMiner();
43                  pm.registerEvent(Event.Type.BLOCK_DAMAGE, powerMiner, Priority.Normal, this);                  pm.registerEvent(Event.Type.BLOCK_DAMAGE, powerMiner, Priority.Normal, this);
44                    pm.registerEvent(Event.Type.PLAYER_QUIT, powerMiner.getPlayerQuitListener(), Priority.Normal, this);
45                  getCommand("powerminer").setExecutor(powerMiner);                  getCommand("powerminer").setExecutor(powerMiner);
46          }          }
47    

Legend:
Removed from v.1385  
changed lines
  Added in v.1501

  ViewVC Help
Powered by ViewVC 1.1.20