File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -2699,8 +2699,8 @@ class SceneTransition extends Play {
2699
2699
2700
2700
//this.current = this._make(CardShowcase, Vec2.zero, {})
2701
2701
// 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 , { } )
2704
2704
//this.current = this._make(HowtoPlay2, Vec2.zero, {})
2705
2705
//this.current = this._make(Settings2, Vec2.zero, {})
2706
2706
//this.current = this._make(SolitairePlay, Vec2.zero, {})
Original file line number Diff line number Diff line change @@ -847,6 +847,7 @@ export class Tableu extends Play {
847
847
}
848
848
849
849
remove_fronts ( i : number ) {
850
+ this . hover_end ( )
850
851
let cards = this . fronts . remove_cards ( i )
851
852
return cards
852
853
}
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export class SolitaireGameDragful extends Play {
65
65
}
66
66
67
67
cant_undo ( ) {
68
- throw new Error ( "Method not implemented." ) ;
68
+ // throw new Error("Method not implemented.");
69
69
}
70
70
undo ( cmd : IMove ) {
71
71
this . cards . undo ( cmd )
@@ -537,6 +537,18 @@ class SolitaireCards extends Play {
537
537
this . tableus [ i ] . add_fronts ( fronts )
538
538
539
539
} )
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
+ } )
540
552
}
541
553
542
554
_release_cancel_drag ( ) {
You can’t perform that action at this time.
0 commit comments