Workaround for the issue in the potion path where morticia and summer just kneel there and you can't do anything else and not progress the story line (Potion Softlock):
On macOS, the game stores its state in a Unity PlayerPrefs file.
Where the save is stored
/Users/yourUser/Library/Preferences/com.Ferdafs.RickAndMorty.plist
In this file, the value "potion_4_0" represents the broken story state. The workaround is to skip it by advancing the state manually. (Aka just skip it)
You need to 1. Close the game 2. Back up that file (copy and paste it into a save folder).
Then you need to run this command in your terminal:
defaults write com.Ferdafs.RickAndMorty potion -string "potion_5_0"
That just changes the value in your save state from saying you are in the potion 4 task to now the potion 5 task. Practically skipping the task.
(optionally just check: "defaults read com.Ferdafs.RickAndMorty potion")
After that it should work fine and you can continue playing the game.
Notes
- This skips the broken potion task
- This is not an ideal fix, but it works
- Tested only on macOS
- Do not modify other values
If you want to see the skipped content, you can watch the corresponding scene (episode 23) on the website of Aura Exposed
ps:
if you are on windows or linux just give chatGPT or your LLM of choice this comment for context and ask it for a corresponding solution for your system