Commit c96a1907 authored by pfyy's avatar pfyy
Browse files

fix dungeon

parent eb42cc9c
......@@ -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;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment