Commit 0b675ff0 authored by Chunchi Che's avatar Chunchi Che

fix placeStore

parent 430c1fc9
Pipeline #23602 passed with stages
in 15 minutes and 21 seconds
......@@ -15,7 +15,7 @@ export type PlaceInteractivity =
}>
| undefined;
const { MZONE, SZONE, HAND, GRAVE, REMOVED } = ygopro.CardZone;
const { MZONE, SZONE, HAND, GRAVE, REMOVED, EXTRA } = ygopro.CardZone;
export interface BlockState {
interactivity?: PlaceInteractivity; // 互动性
......@@ -51,6 +51,10 @@ const initialState = {
me: genPLaces(100),
op: genPLaces(100),
},
[EXTRA]: {
me: genPLaces(100),
op: genPLaces(100),
},
};
class PlaceStore implements NeosStore {
......
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