Skip to content

Commit

Permalink
minor changes v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
doej1367 committed Apr 8, 2022
1 parent 6eb3fbe commit a79b1ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void run() {
inputTextField.setWrapStyleWord(true);
inputTextField.setRows(4);
inputTextField.setFont(new Font("Consolas", Font.PLAIN, 14));
inputTextField.setText("(You bought Kismet Feather!.*)|(You claimed Kismet Feather from .* auction!)|(The Catacombs - Floor VII)->(Team Score: [0-9]+ \\(S\\+\\).*)");
inputTextField.setText("(You bought Kismet Feather!.*)|(You purchased .*Kismet Feather .*)|(The Catacombs - Floor VII)->(Team Score: [0-9]+ \\(S\\+\\).*)");
inputTextField.setEditable(true);
scrollPaneTop.setViewportView(inputTextField);

Expand Down
2 changes: 2 additions & 0 deletions src/util/LogRecords.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ public void add(int recordStartLine) {
foundLine = line;
for (int i = 1; i < subFilters.size(); i++) {
for (int j = 0; j < 20; j++) {
if (lineIndex >= logLines.size() - 1)
return;
line = logLines.get(lineIndex = (lineIndex < logLines.size() - 1) ? (lineIndex + 1) : lineIndex);
if (line.getText().matches(subFilters.get(0))) {
return;
Expand Down

0 comments on commit a79b1ae

Please sign in to comment.