removed > from user prompts

This commit is contained in:
Paul Gauthier 2023-05-15 21:01:04 -07:00
parent 5cc2e0a993
commit b95015c25b
10 changed files with 45 additions and 45 deletions

View file

@ -9,7 +9,7 @@ Notice that GPT-4 asks to see a particular source file, and aider automatically
> $ aider
#### > what is this repo?
#### what is this repo?
Based on the file names you provided, it seems like this repository is for a web-based game, possibly a 2048 game clone. The files include JavaScript files for game logic, HTML and CSS files for the user interface, and various meta files for icons and touch startup images.
@ -17,7 +17,7 @@ If you need help with any specific part of the code or want to add new features,
---
#### > how does the scoring work?
#### how does the scoring work?
To help you with the scoring mechanism, I need to see the relevant code. Please provide the contents of the `js/game_manager.js` file, as it is likely to contain the scoring logic.
@ -60,7 +60,7 @@ In this code snippet, when two tiles with the same value (`tile` and `next`) are
---
#### > can we add some randomness? maybe 10% of the time give the user a 10x bonus?
#### can we add some randomness? maybe 10% of the time give the user a 10x bonus?
Sure, we can add a 10% chance of giving the user a 10x bonus when two tiles merge. To implement this, we'll modify the scoring logic in the `js/game_manager.js` file. Here's the step-by-step plan: