Skip to content

Commit

Permalink
Merge pull request Grasscutters#1710 from pfyy/development
Browse files Browse the repository at this point in the history
fix dungeon
  • Loading branch information
KingRainbow44 authored Aug 26, 2022
2 parents eb42cc9 + c96a190 commit 35ddc40
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ public void setOnSelectWorktopOptionEvent(WorktopWorktopOptionHandler handler) {
this.handler = handler;
}
public boolean onSelectWorktopOption(SelectWorktopOptionReq req) {
this.handler.onSelectWorktopOption(this,req.getOptionId());
if (this.handler != null) {
this.handler.onSelectWorktopOption(this, req.getOptionId());
}
return false;
}

Expand Down

0 comments on commit 35ddc40

Please sign in to comment.