Skip to content

Commit 3dbe9aa

Browse files
author
croxis
committed
Fixed pesky sign debug output.
1 parent 38fbb26 commit 3dbe9aa

File tree

6 files changed

+498
-506
lines changed

6 files changed

+498
-506
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defaultTasks 'clean', 'build'
77
//the naming of this artifact
88
group = 'net.croxis.plugins.lift'
99
jar.archiveName = 'Lift.jar'
10-
version = '60'
10+
version = '61'
1111
description = 'Elevators!'
1212

1313
// Minimum version of Java required

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
66
<name>Lift</name>
77
<description>Simple and easy Lifts and Elevators for Bukkit</description>
88
<url>https://github.com/croxis/Lift</url>
9-
<version>60</version>
9+
<version>61</version>
1010

1111
<scm>
1212
<developerConnection>scm:git:[email protected]:croxis/Lift.git</developerConnection>

src/main/java/net/croxis/plugins/lift/BukkitCancelRedstoneTask.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
*/
1919
package net.croxis.plugins.lift;
2020

21-
import org.bukkit.Material;
2221
import org.bukkit.block.Block;
23-
import org.bukkit.block.BlockState;
2422
import org.bukkit.block.data.BlockData;
2523
import org.bukkit.block.data.Powerable;
2624
import org.bukkit.scheduler.BukkitRunnable;
@@ -33,11 +31,6 @@ public class BukkitCancelRedstoneTask extends BukkitRunnable{
3331
}
3432

3533
public void run() {
36-
//BlockState state = button.getState();
37-
//((org.bukkit.material.Button) state.getData()).setPowered(false);
38-
//state.update();
39-
//state.update();
40-
4134
BlockData data = button.getBlockData();
4235
if (data instanceof Powerable){
4336
Powerable powerData = (Powerable) data;

0 commit comments

Comments
 (0)