diff --git a/examples/react-app/src/App.tsx b/examples/react-app/src/App.tsx
index 024eb66a..18bcf3d2 100644
--- a/examples/react-app/src/App.tsx
+++ b/examples/react-app/src/App.tsx
@@ -125,12 +125,22 @@ function App() {
-
- move(account, Direction.Left)}>
+
+ position && position.vec.x > 0
+ ? move(account, Direction.Left)
+ : console.log("Reach the borders of the world.")
+ }>
Move Left
move(account, Direction.Right)}>
diff --git a/examples/react-app/src/dojo/createSystemCalls.ts b/examples/react-app/src/dojo/createSystemCalls.ts
index a6265e72..429378dd 100644
--- a/examples/react-app/src/dojo/createSystemCalls.ts
+++ b/examples/react-app/src/dojo/createSystemCalls.ts
@@ -26,7 +26,7 @@ export function createSystemCalls(
entity: entityId,
value: {
player: BigInt(entityId),
- remaining: 10,
+ remaining: 100,
last_direction: 0,
},
});