Skip to content

Commit

Permalink
* Implemented Ray Tracing Methods.
Browse files Browse the repository at this point in the history
* Removed "stopInTracks()" from the EconomyCallEvent.

Signed-off-by: BuildTools <[email protected]>
  • Loading branch information
XZot1K authored and BuildTools committed Apr 7, 2020
1 parent 43d8243 commit 2b03648
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 25 deletions.
2 changes: 1 addition & 1 deletion API Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
## API-VERSION 1.0.1 ##
## API-VERSION 1.0.2 ##
14 changes: 0 additions & 14 deletions src/xzot1k/plugins/ds/api/events/ECEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,6 @@ public interface ECEvent {

Shop getShop();

/**
* If this is enabled, everything called after this event will not be reached.
*
* @return Whether it stops in it's tracks or not.
*/
boolean stopInTracks();

/**
* If this is enabled, everything called after this event will not be reached.
*
* @param stopInTracks Whether it should stop in it's tracks.
*/
void setStopInTracks(boolean stopInTracks);

double getTax();

void setTax(double tax);
Expand Down
10 changes: 0 additions & 10 deletions src/xzot1k/plugins/ds/api/events/EconomyCallEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,6 @@ public Shop getShop() {
return null;
}

@Override
public boolean stopInTracks() {
return false;
}

@Override
public void setStopInTracks(boolean stopInTracks) {

}

@Override
public double getTax() {
return 0;
Expand Down

0 comments on commit 2b03648

Please sign in to comment.