diff options
author | Anthony Wang | 2021-06-05 20:22:44 -0500 |
---|---|---|
committer | Anthony Wang | 2021-06-05 20:22:44 -0500 |
commit | 8e8dfc3cd6b06e0c8a737ec5362f3f2684309705 (patch) | |
tree | 1d3376a4948e788d393fc001d2cce27b8942e02b | |
parent | 46eb51e2b5b9bb8f1513a7475b972864210d38fa (diff) |
Fix typo
-rw-r--r-- | env | 2 | ||||
-rw-r--r-- | front/pages/index.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ export NEXT_PUBLIC_BACK_HOST='https://server.exozy.me' export ORIGIN="*" -export PORT=4000 +export PORT=6000 export SSL_KEY=/etc/letsencrypt/live/exozy.me/privkey.pem export SSL_CERT=/etc/letsencrypt/live/exozy.me/cert.pem export SSL_CA=/etc/letsencrypt/live/exozy.me/chain.pem diff --git a/front/pages/index.tsx b/front/pages/index.tsx index dfea645..b745eb7 100644 --- a/front/pages/index.tsx +++ b/front/pages/index.tsx @@ -26,7 +26,7 @@ const rules = `There are only 5 simple rules! 3. During the round, players go around in a circle, claiming increasingly greater numbers. If it is your turn to claim a number, you must either claim a larger number than the previously claimed number or call BS. If you call BS, the previous player must flip over their claimed number of black (clubs or spades) cards from the tops of everyone's stacks. -4. When you click flip, it flips over the top card from that person's stack. If the previous player flips over a red card or cannot flip over their claimed number of black cards, they must choose a card from your stack to give up. Otherwise, the person who called BS must choose one of their cards to give up. +4. When you click flip, it flips over the top card from that person's stack. If the previous player flips over a red card or cannot flip over their claimed number of black cards, they must choose a card from their stack to give up. Otherwise, the person who called BS must choose one of their cards to give up. 5. If you give up all your cards, you lose! Last player remaining wins! |