summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Disable-Catching-Pokemon.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/Disable-Catching-Pokemon.md b/Disable-Catching-Pokemon.md
index 081b868..1cd163f 100644
--- a/Disable-Catching-Pokemon.md
+++ b/Disable-Catching-Pokemon.md
@@ -26,3 +26,9 @@ Open [src/item_use.c](../blob/master/src/item_use.c). Navigate to the function,
```
When `FLAG_DISABLE_CATCHING` is set, the player will no longer be able to use a poke ball in battle.
+
+### Reset after Whiteout
+Open [src/overworld.c](../blob/master/src/overworld.c) and find the function `Overworld_ResetStateAfterWhiteOut`. Add the following alongside the other `FlagClear` functions:
+```
+FlagClear(FLAG_DISABLE_CATCHING);
+``` \ No newline at end of file