Commit d895da88 authored by Chunchi Che's avatar Chunchi Che

fix small

parent 7994199e
Pipeline #23245 passed with stages
in 10 minutes and 39 seconds
...@@ -15,7 +15,7 @@ export type PlaceInteractivity = ...@@ -15,7 +15,7 @@ export type PlaceInteractivity =
}> }>
| undefined; | undefined;
const { MZONE, SZONE, HAND, GRAVE, EXTRA } = ygopro.CardZone; const { MZONE, SZONE, HAND, GRAVE, REMOVED } = ygopro.CardZone;
export interface BlockState { export interface BlockState {
interactivity?: PlaceInteractivity; // 互动性 interactivity?: PlaceInteractivity; // 互动性
...@@ -40,16 +40,16 @@ const initialState = { ...@@ -40,16 +40,16 @@ const initialState = {
op: genPLaces(6), op: genPLaces(6),
}, },
[HAND]: { [HAND]: {
me: [], me: genPLaces(100), // 给100个占位
op: [], op: genPLaces(100),
}, },
[GRAVE]: { [GRAVE]: {
me: [], me: genPLaces(100),
op: [], op: genPLaces(100),
}, },
[EXTRA]: { [REMOVED]: {
me: [], me: genPLaces(100),
op: [], op: genPLaces(100),
}, },
}; };
......
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