Skip to content

Commit

Permalink
remove .DS_Store
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjtalkshow committed Oct 16, 2024
1 parent 511ea7a commit ad0adb5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 1 deletion.
Binary file removed .DS_Store
Binary file not shown.
Binary file removed onchain/.DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion onchain/src/systems/game_actions.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ mod GameActions {
fn join_game( ref world: IWorldDispatcher, game_id: u64, player_username: felt252, player_color: felt252 ) {
let mut game: Game = get!(world, game_id, (Game));

// Check if the game is pending
assert(game.game_status == GameStatus::Waiting, 'Game is not pending');

let mut player: Player = get!(world, player_username, (Player));
Expand Down

0 comments on commit ad0adb5

Please sign in to comment.