Skip to content

Commit

Permalink
derp
Browse files Browse the repository at this point in the history
  • Loading branch information
Afforess committed Nov 1, 2011
1 parent 911e2d6 commit c228ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/getspout/testplugin/TestBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class TestBlock/* extends GenericCubeCustomBlock*/ {

public static String textureUrl = "http://dl.dropbox.com/u/40267690/quartz.png";
public static Texture texture = new Texture(textureUrl, 16, 16, 16);
//public static Texture texture = new Texture(textureUrl, 16, 16, 16);

public TestBlock(Plugin plugin) {
//super(plugin, "CustomBlock", true, new GenericCubeBlockDesign(plugin, texture, 0), 0);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/getspout/testplugin/TestPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void onDisable() {

public void onEnable() {

testBlock = new TestBlock(this);
//testBlock = new TestBlock(this);

getServer().getPluginManager().registerEvent(Type.CUSTOM_EVENT, new TestSpoutListener(), Priority.Normal, this);
getServer().getPluginManager().registerEvent(Type.CUSTOM_EVENT, new TestInputListener(), Priority.Normal, this);
Expand Down

0 comments on commit c228ed7

Please sign in to comment.