Skip to content

Commit 24f229f

Browse files
committed
Add LPC warning to RS
1 parent b180fd3 commit 24f229f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://user-images.githubusercontent.com/25177576/190633432-57b527da-786e-4c24-
1010
A game played at H-Group level 5 can be seen [here](https://github.com/WillFlame14/hanabi-bot/assets/25177576/1aa4f67e-aa66-4704-ba75-fe6edf403bfa).
1111

1212
## Bot features
13-
- Can play with different conventions! Currently, Playful Sieve (2p only) and HGroup levels 1 through 11 are supported.
13+
- Can play with different conventions! Currently, Playful Sieve (2p only), Referential Sieve and HGroup levels 1 through 11 are supported.
1414
- Supports No Variant, Black, White, Rainbow, Prism, Pink and Brown variants, as well as their 6-suit equivalents.
1515
- Takes notes during the game on what it thinks each player knows about their own hand.
1616
- Internally rewinds to relevant turns to understand mistakes.

src/command-handler.js

+3
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,9 @@ function assignSettings(data, priv) {
352352

353353
settings.level = Math.max(Math.min(level, MAX_H_LEVEL), 1);
354354
}
355+
else if (settings.convention === 'RefSieve') {
356+
reply('Note that this bot plays with loaded rank play clues that are right-referential rather than direct (as in the doc).');
357+
}
355358

356359
reply(`Currently playing with ${settingsString()} conventions.`);
357360
}

0 commit comments

Comments
 (0)