Skip to content

Commit

Permalink
fix cube_y d2viewchar, build gomule.jar
Browse files Browse the repository at this point in the history
  • Loading branch information
pairofdocs committed Jun 3, 2021
1 parent c8b505f commit 1870f54
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified gomule/GoMule.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gomule/src/gomule/gui/D2ViewChar.java
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ private int getMousePanel(int x, int y)
{
return D2Character.BODY_INV_CONTENT;
}
if (iIsChar && x >= CUBE_X && x < CUBE_X + 3 * GRID_SIZE + 3 * GRID_SPACER && y >= CUBE_Y && y < INV_Y + 4 * GRID_SIZE + 4 * GRID_SPACER)
if (iIsChar && x >= CUBE_X && x < CUBE_X + 3 * GRID_SIZE + 3 * GRID_SPACER && y >= CUBE_Y && y < CUBE_Y + 4 * GRID_SIZE + 4 * GRID_SPACER)
{
return D2Character.BODY_CUBE_CONTENT;
}
Expand Down

0 comments on commit 1870f54

Please sign in to comment.