Skip to content

Commit

Permalink
docs(guides/emojimon): fix git commands (#3278)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Ingersoll <[email protected]>
  • Loading branch information
three9s and holic authored Oct 18, 2024
1 parent 3a80bed commit 1492536
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/pages/guides/emojimon/2-getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Most projects in MUD are started by running `pnpm create mud@latest <project nam
1. Now that you've seen our end goal, reset the repository to [the starting snapshot](https://github.com/latticexyz/emojimon/tree/d6297320d7d1c378f3a3f30456d65a36d0323266).

```sh copy
git reset --hard start
git reset --hard origin/start
```

After you do this, the game is just a green area where the map is going to be.
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/guides/emojimon/3-players-and-movement.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ For `spawn`, we do a similar approach, except we need to add overrides for both
You can run this command to update all the files to this point in the game's development.
```sh copy
git reset --hard step-1
git reset --hard origin/step-1
```
Now that we have players, movement, and a basic map, let's start making improvements to the map itself.
2 changes: 1 addition & 1 deletion docs/pages/guides/emojimon/4-map-and-terrain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -765,5 +765,5 @@ export function createSystemCalls(
You can run this command to update all the files to this point in the game's development.

```sh copy
git reset --hard step-2
git reset --hard origin/step-2
```
2 changes: 1 addition & 1 deletion docs/pages/guides/emojimon/5-a-wild-emojimon-appears.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1246,5 +1246,5 @@ export function createSystemCalls(
You can run this command to update all the files to this point in the game's development.

```sh copy
git reset --hard step-3
git reset --hard origin/step-3
```
2 changes: 1 addition & 1 deletion docs/pages/guides/emojimon/6-advanced.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const GameBoard = () => {
You can run this command to update all the files to this point in the game's development.

```sh copy
git reset --hard step-4
git reset --hard origin/step-4
```

All you have to do now is deploy to testnet!
Expand Down

0 comments on commit 1492536

Please sign in to comment.