Skip to content

Commit a17f7ef

Browse files
committed
Fix spectral generation
1 parent 9a4463b commit a17f7ef

File tree

5 files changed

+9
-27
lines changed

5 files changed

+9
-27
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
build
1+
build
2+
filters/test.cl

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To run:
1212
`.\build\Release\Immolate.exe`
1313

1414
## Future Plans
15-
- Updating to work with 1.0.
15+
- Full support with all features in Balatro 1.0.
1616
- Support for stakes and challenges.
1717
- Saving output to a file.
1818
- A GUI to interact with the searcher without having as much technical knowledge.

immolate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
int main(int argc, char **argv) {
33

44
// Print version
5-
printf_s("Immolate Beta v1.0.0i.0\n");
5+
printf_s("Immolate Beta v1.0.0i.1\n");
66

77
// Handle CLI arguments
88
unsigned int platformID = 0;

lib/items.cl

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -752,27 +752,6 @@ __constant item RARE_JOKERS[] = {
752752
Invisible_Joker,
753753
Brainstorm
754754
};
755-
__constant item SPECTRALS[] = {
756-
18,
757-
Familiar,
758-
Grim,
759-
Incantation,
760-
Talisman,
761-
Aura,
762-
Wraith,
763-
Sigil,
764-
Ouija,
765-
Ectoplasm,
766-
Immolate,
767-
Ankh,
768-
Deja_Vu,
769-
Hex,
770-
Trance,
771-
Medium,
772-
Cryptid,
773-
RETRY, //Soul
774-
RETRY //Black_Hole
775-
};
776755
__constant item VOUCHERS[] = {
777756
8,
778757
Overstock,
@@ -948,7 +927,7 @@ __constant item LEGENDARY_JOKERS[] = {
948927
Perkeo
949928
};
950929
__constant item SPECTRALS[] = {
951-
16,
930+
18,
952931
Familiar,
953932
Grim,
954933
Incantation,
@@ -964,7 +943,9 @@ __constant item SPECTRALS[] = {
964943
Hex,
965944
Trance,
966945
Medium,
967-
Cryptid
946+
Cryptid,
947+
RETRY, //Soul
948+
RETRY //Black_Hole
968949
};
969950
__constant item TAGS[] = {
970951
24,

search.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "filters/four_deadly_jokers.cl"
1+
#include "filters/test.cl"
22

33
// Search
44
// Note that when embedding the files into the C code, this part will have to be included after filter.cl is loaded.

0 commit comments

Comments
 (0)