Skip to content

Commit

Permalink
Decompiled v2.0.0 using CFR.
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Dec 5, 2014
1 parent a765e79 commit 38ab20f
Show file tree
Hide file tree
Showing 20 changed files with 6,755 additions and 7,907 deletions.
43 changes: 19 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,16 @@
<version>2.0.0-b${env.BUILD_NUMBER}</version>
<name>Ultimate Skyblock</name>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public/</url>
</repository>
<repository>
<id>bukkit-maven</id>
<url>http://repo.bukkit.org/content/repositories/releases/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>

<repository>
<id>vault-repo</id>
<url>http://nexus.theyeticave.net/content/repositories/public/</url>
<snapshots></snapshots>
</repository>
<repository>
<id>sk89q-mvn2</id>
<url>http://mvn2.sk89q.com/repo</url>
</repository>

<!-- Addstar repo -->
<repository>
<id>addstar-repo</id>
<url>http://maven.addstar.com.au/artifactory/ext-release-local</url>
</repository>

</repositories>
<build>
<finalName>uSkyBlock</finalName>
Expand Down Expand Up @@ -62,26 +50,33 @@
<dependency> <!-- Bukkit implementation -->
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.9-R0.2</version>
<version>1.8-R0.1-SNAPSHOT</version>
<optional>true</optional>
<scope>system</scope>
<systemPath>${env.SPIGOT_BASE}/Bukkit/target/Bukkit-1.8-R0.1-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>net.milkbowl</groupId>
<artifactId>vault</artifactId>
<version>1.2.12</version>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>1.4.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId>
<version>LATEST</version>
<version>6.0.0-SNAPSHOT</version>
<scope>compile</scope>
<type>jar</type>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>LATEST</version>
<version>6.0.0-SNAPSHOT</version>
<scope>compile</scope>
<type>jar</type>
<optional>true</optional>
Expand Down
116 changes: 54 additions & 62 deletions src/us/talabrek/ultimateskyblock/Challenge.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,66 +2,58 @@

public class Challenge
{
private String name;
private long firstCompleted;
private int timesCompleted;
private int timesCompletedSinceTimer;

public Challenge(String name)
{
this.name = name;
this.firstCompleted = 0L;
this.timesCompleted = 0;
}

public Challenge(String name, long firstCompleted, int timesCompleted, int timesCompletedSinceTimer)
{
this.name = name;
this.firstCompleted = firstCompleted;
this.timesCompleted = timesCompleted;
this.timesCompletedSinceTimer = timesCompletedSinceTimer;
}

public String getName()
{
return this.name;
}

public long getFirstCompleted()
{
return this.firstCompleted;
}

public int getTimesCompleted()
{
return this.timesCompleted;
}

public int getTimesCompletedSinceTimer()
{
return this.timesCompletedSinceTimer;
}

public void setFirstCompleted(long newCompleted)
{
this.firstCompleted = newCompleted;
this.timesCompletedSinceTimer = 0;
}

public void setTimesCompleted(int newCompleted)
{
this.timesCompleted = newCompleted;
this.timesCompletedSinceTimer = newCompleted;
}

public void addTimesCompleted()
{
this.timesCompleted += 1;
this.timesCompletedSinceTimer += 1;
}

public void setName(String name)
{
this.name = name;
}
private String name;
private long firstCompleted;
private int timesCompleted;
private int timesCompletedSinceTimer;

public Challenge(final String name) {
super();
this.name = name;
this.firstCompleted = 0L;
this.timesCompleted = 0;
}

public Challenge(final String name, final long firstCompleted, final int timesCompleted, final int timesCompletedSinceTimer) {
super();
this.name = name;
this.firstCompleted = firstCompleted;
this.timesCompleted = timesCompleted;
this.timesCompletedSinceTimer = timesCompletedSinceTimer;
}

public String getName() {
return this.name;
}

public long getFirstCompleted() {
return this.firstCompleted;
}

public int getTimesCompleted() {
return this.timesCompleted;
}

public int getTimesCompletedSinceTimer() {
return this.timesCompletedSinceTimer;
}

public void setFirstCompleted(final long newCompleted) {
this.firstCompleted = newCompleted;
this.timesCompletedSinceTimer = 0;
}

public void setTimesCompleted(final int newCompleted) {
this.timesCompleted = newCompleted;
this.timesCompletedSinceTimer = newCompleted;
}

public void addTimesCompleted() {
++this.timesCompleted;
++this.timesCompletedSinceTimer;
}

public void setName(final String name) {
this.name = name;
}
}
Loading

0 comments on commit 38ab20f

Please sign in to comment.