We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14f9375 commit 9d36220Copy full SHA for 9d36220
Script/script.js
@@ -149,7 +149,7 @@ function chain_toggler(cell){
149
adj_list=chain_yx=[];
150
if(DATA.target.hand<=0){
151
alert(`ゲームオーバー! スコアは${DATA.target.score}でした!`);
152
- board_init();
+ import(DATALINK).then(x => {DATA = x.default ; board_init()});
153
}
154
}else if(CELL_COLOR>0){//チェイン開始の処理
155
chain_now=true;
@@ -159,7 +159,6 @@ function chain_toggler(cell){
159
160
161
function board_init(){
162
- console.log(DATA);
163
load_board();
164
falling_orb();
165
DATA.target.score=0;
0 commit comments