Skip to content

Commit

Permalink
Final 669 build
Browse files Browse the repository at this point in the history
  • Loading branch information
derimmer committed Nov 5, 2024
1 parent 18f1bb9 commit 16ac085
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion src/VASL/build/module/ASLChatter.java
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ else if (firstDie == 6 && secondDie == 6) {

if (showDiceStats) {
int endidx = restOfMsg.indexOf("R");
msgpartRest = restOfMsg.substring(0, endidx);
msgpartRest = (endidx == -1 ? restOfMsg : restOfMsg.substring(0, endidx));
}
if ((Boolean) GameModule.getGameModule().getPrefs().getValue((SHOW_ROF_DIE))) {
if ("TH".equals(category) || ("IFT".equals(category))) {
Expand All @@ -709,6 +709,8 @@ else if (firstDie == 6 && secondDie == 6) {
restOfMsg = restOfMsg.substring(startidx);
msgpartROFDie = restOfMsg;
}
} else {

}
}
fireDiceRoll(otherDice);
Expand Down
8 changes: 4 additions & 4 deletions src/VASL/build/module/map/ASLPieceMover.java
Original file line number Diff line number Diff line change
Expand Up @@ -1650,17 +1650,17 @@ protected void makeDragCursor(double zoom, double os_scale) {
* @param dragX x position
* @param dragY y position
*/
@Override
/*@Override
protected void moveDragCursor(int dragX, int dragY) {
if (drawWin != null) {
dragCursor.setLocation(dragX - drawOffset.x, dragY - drawOffset.y);
}
}
}*/

/**
* Removes the drag cursor from the current draw window
*/
@Override
/*@Override
protected void removeDragCursor() {
if (drawWin != null) {
if (dragCursor != null) {
Expand All @@ -1669,7 +1669,7 @@ protected void removeDragCursor() {
}
drawWin = null;
}
}
}*/

/**
* creates or moves cursor object to given JLayeredPane. Usually called by setDrawWinToOwnerOf()
Expand Down

0 comments on commit 16ac085

Please sign in to comment.