Commit 9f376563 authored by Chunchi Che's avatar Chunchi Che

fix

parent 9b77151a
...@@ -2,7 +2,7 @@ import { ygopro } from "../../api/ocgcore/idl/ocgcore"; ...@@ -2,7 +2,7 @@ import { ygopro } from "../../api/ocgcore/idl/ocgcore";
import { AppDispatch } from "../../store"; import { AppDispatch } from "../../store";
import { import {
fetchCommonHintMeta, fetchCommonHintMeta,
fetchSelectPlaceHintMeta, fetchSelectHintMeta,
} from "../../reducers/duel/hintSlice"; } from "../../reducers/duel/hintSlice";
import MsgHint = ygopro.StocGameMessage.MsgHint; import MsgHint = ygopro.StocGameMessage.MsgHint;
...@@ -15,7 +15,7 @@ export default (hint: MsgHint, dispatch: AppDispatch) => { ...@@ -15,7 +15,7 @@ export default (hint: MsgHint, dispatch: AppDispatch) => {
break; break;
} }
case MsgHint.HintType.HINT_SELECTMSG: { case MsgHint.HintType.HINT_SELECTMSG: {
dispatch(fetchSelectPlaceHintMeta([player, hint.hint_data])); dispatch(fetchSelectHintMeta([player, hint.hint_data]));
break; break;
} }
default: { default: {
......
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