The Binding of Isaac: Rebirth

The Binding of Isaac: Rebirth

Encyclopedia - An In-Game Wiki!
 This topic has been pinned, so it's probably important
Smoothie 7 Dec, 2024 @ 5:44pm
Repentance+ quick fix
the mod hasn't been updated for repentance+ yet so the menu isn't appearing, i got it fixed like this

on your game install go to mods\encyclopedia_2376005362\main.lua
then add at the start

if REPENTANCE_PLUS and not REPENTANCE then REPENTANCE = true end
< >
Showing 1-5 of 5 comments
doesnt work for me, the menu and the mod itself continue to not exist lol
AgentCucco  [developer] 8 Dec, 2024 @ 10:55am 
If you have a code editor like Notepad++ or VsCode, you can ctrl+shift+h in the main.lua to replace on all files in the mod, and do this (make sure to check the "Match whole word" and "Match case" settings):

Replace
REPENTANCE
with
(REPENTANCE or REPENTANCE_PLUS)

That should allow the mod to work without breaking the API by setting REPENTANCE to true. At least until it's updated, which might take a while.
Last edited by AgentCucco; 8 Dec, 2024 @ 11:02am
Moritox:3 8 Dec, 2024 @ 11:21am 
hi, in my case, the menu appears, the only thing that is missing is the "ENCYCLOPEDIA" part, anyways the rest works good, i hope you can update soon!!!! thanks
doublesdoublet 10 Dec, 2024 @ 7:31am 
Originally posted by AgentCucco:
If you have a code editor like Notepad++ or VsCode, you can ctrl+shift+h in the main.lua to replace on all files in the mod, and do this (make sure to check the "Match whole word" and "Match case" settings):

Replace
REPENTANCE
with
(REPENTANCE or REPENTANCE_PLUS)

That should allow the mod to work without breaking the API by setting REPENTANCE to true. At least until it's updated, which might take a while.

can confirm that this worked for me, thank you!
still didnt work for me, did everything you said
< >
Showing 1-5 of 5 comments
Per page: 1530 50