Merge pull request #1710 from pfyy/development

fix dungeon
This commit is contained in:
Magix
2022-08-25 19:25:50 -07:00
committed by GitHub

View File

@@ -58,7 +58,9 @@ public class GadgetWorktop extends GadgetContent {
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;
}