Skip to content

Commit b5acd72

Browse files
committed
docs: remove emoji from docs
1 parent 6059519 commit b5acd72

File tree

3 files changed

+16
-22
lines changed

3 files changed

+16
-22
lines changed

β€Ždocs/README.mdβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,26 @@ mybot.run()
4242

4343
## Documentation Sections
4444

45-
### πŸ“š Core Documentation
45+
### Core Documentation
4646
- **[Architecture](architecture.md)** - System design and component interaction
4747
- **[Installation](installation.md)** - Complete setup guide
4848
- **[Configuration](configuration.md)** - Configuration options and settings
4949

50-
### πŸ€– Bot Development
50+
### Bot Development
5151
- **[Bot Development Guide](bot-development.md)** - How to create your own bots
5252
- **[Game State Reference](game-state.md)** - Understanding the game state object
5353
- **[Actions Reference](actions.md)** - Complete list of available actions
5454

55-
### πŸ“– API Reference
55+
### API Reference
5656
- **[Python API](python-api.md)** - Python classes and methods
5757
- **[Lua API](lua-api.md)** - Lua modules and functions
5858

59-
### πŸ’‘ Examples & Guides
59+
### Examples & Guides
6060
- **[Examples](examples.md)** - Working bot examples with explanations
6161
- **[Best Practices](best-practices.md)** - Tips for effective bot development
6262
- **[Performance Optimization](performance.md)** - Making your bots run faster
6363

64-
### πŸ”§ Advanced Topics
64+
### Advanced Topics
6565
- **[Multi-Instance Setup](multi-instance.md)** - Running multiple bots
6666
- **[Logging & Replay](logging-replay.md)** - Recording and replaying games
6767
- **[Troubleshooting](troubleshooting.md)** - Common issues and solutions

β€Ždocs/installation.mdβ€Ž

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Before installing Balatrobot, ensure you have:
1717
- **Disk Space**: 100MB for mod files
1818

1919
### Important Notes
20-
- ⚠️ **Steam Version Required**: The Epic Games Store version is not supported
21-
- ⚠️ **Mod Warning**: This mod may not work with other Balatro mods
22-
- ⚠️ **Risk**: Use at your own risk as with any game modification
20+
- **Steam Version Required**: The Epic Games Store version is not supported
21+
- **Mod Warning**: This mod may not work with other Balatro mods
22+
- **Risk**: Use at your own risk as with any game modification
2323

2424
## Step 1: Install Steamodded
2525

@@ -228,19 +228,13 @@ python bot_example.py
228228

229229
#### Expected Behavior
230230

231-
- Balatro should start a new run automatically
232-
- The bot should make decisions (skip small/big blinds, play cards)
233-
- You should see the game progressing automatically
234-
235-
#### Success Indicators
236-
237-
βœ… **Working correctly if you see:**
231+
**Working correctly if you see:**
238232
- Game starts automatically
239233
- Cards are played/discarded automatically
240234
- Shop actions occur without user input
241235
- Game progresses through rounds
242236

243-
❌ **Check troubleshooting if:**
237+
**Check troubleshooting if:**
244238
- Bot script hangs or shows errors
245239
- Game doesn't start automatically
246240
- No automatic actions occur

β€Ždocs/troubleshooting.mdβ€Ž

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ Comprehensive guide to diagnosing and fixing common issues with Balatrobot.
88

99
Before troubleshooting, verify these basics:
1010

11-
βœ… **Prerequisites Met**
11+
**Prerequisites Met**
1212
- [ ] Balatro (Steam version) installed
1313
- [ ] Steamodded v0.9.3+ installed and working
1414
- [ ] Python 3.7+ installed
1515
- [ ] Balatrobot mod copied to correct directory
1616

17-
βœ… **Configuration Basics**
17+
**Configuration Basics**
1818
- [ ] `config.lua` has `enabled = true`
1919
- [ ] Port numbers match between Lua config and Python bot
2020
- [ ] No firewall blocking the port
2121
- [ ] Balatro launched with mod enabled
2222

23-
βœ… **Connection Test**
23+
**Connection Test**
2424
- [ ] Balatro shows "Balatrobot v0.3 loaded" message
2525
- [ ] Python script runs without import errors
2626
- [ ] Bot sends "HELLO" message on startup
@@ -63,9 +63,9 @@ except socket.timeout:
6363
```
6464
Balatro/Mods/
6565
└── Balatrobot-v0.3/
66-
β”œβ”€β”€ main.lua βœ“
67-
β”œβ”€β”€ config.lua βœ“
68-
└── src/ βœ“
66+
β”œβ”€β”€ main.lua
67+
β”œβ”€β”€ config.lua
68+
└── src/
6969
```
7070

7171
2. **Verify Steamodded Installation**

0 commit comments

Comments
Β (0)