Skip to content

Commit ee9bf18

Browse files
committedJan 30, 2024
cant undo bug
1 parent eb18358 commit ee9bf18

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed
 

‎src/game.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2699,8 +2699,8 @@ class SceneTransition extends Play {
26992699

27002700
//this.current = this._make(CardShowcase, Vec2.zero, {})
27012701
// this.current = this._make(MainMenu, Vec2.zero, {})
2702-
this.current = this._make(Statistics2, Vec2.zero, {})
2703-
//this.current = this._make(MainMenu2, Vec2.zero, {})
2702+
//this.current = this._make(Statistics2, Vec2.zero, {})
2703+
this.current = this._make(MainMenu2, Vec2.zero, {})
27042704
//this.current = this._make(HowtoPlay2, Vec2.zero, {})
27052705
//this.current = this._make(Settings2, Vec2.zero, {})
27062706
//this.current = this._make(SolitairePlay, Vec2.zero, {})

‎src/showcase.ts

+1
Original file line numberDiff line numberDiff line change
@@ -847,6 +847,7 @@ export class Tableu extends Play {
847847
}
848848

849849
remove_fronts(i: number) {
850+
this.hover_end()
850851
let cards = this.fronts.remove_cards(i)
851852
return cards
852853
}

‎src/solitaire_game_dragful.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class SolitaireGameDragful extends Play {
6565
}
6666

6767
cant_undo() {
68-
throw new Error("Method not implemented.");
68+
//throw new Error("Method not implemented.");
6969
}
7070
undo(cmd: IMove) {
7171
this.cards.undo(cmd)
@@ -537,6 +537,18 @@ class SolitaireCards extends Play {
537537
this.tableus[i].add_fronts(fronts)
538538

539539
})
540+
541+
542+
back.foundations.forEach((foundation, i) => {
543+
let fs = foundation.foundation.cards.map(card => {
544+
let c = this.cards.borrow()
545+
c.card = card
546+
c.flip_front()
547+
return c
548+
})
549+
550+
this.foundations[i].add_cards(fs)
551+
})
540552
}
541553

542554
_release_cancel_drag() {

0 commit comments

Comments
 (0)