forked from DizzyEggg/pokeemerald
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get rid of the gActiveBattler variable #3262
Merged
ghoulslash
merged 9 commits into
rh-hideout:upcoming
from
DizzyEggg:active_battler_controllers
Sep 4, 2023
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
156aa59
start removing gActiveBattler in controller emitters
DizzyEggg 0381ccd
remove more of gActiveBattler
DizzyEggg 77dd515
remove gActiveBattler from battle_script_commands.c
DizzyEggg 4683783
remove active battler from other files
DizzyEggg a7615f9
remove almost all usage of active battler
DizzyEggg c29f825
remove gActiveBattler entirely
DizzyEggg 493c330
merge with upcoming
DizzyEggg 7c2ad31
merge with upcoming
DizzyEggg d967776
remove gActiveBattler replacement
DizzyEggg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -367,7 +367,7 @@ B_ATK_PARTNER_NAME = FD 0E | |||||||||
B_ATK_NAME_WITH_PREFIX = FD 0F | ||||||||||
B_DEF_NAME_WITH_PREFIX = FD 10 | ||||||||||
B_EFF_NAME_WITH_PREFIX = FD 11 @ EFF = short for gEffectBattler | ||||||||||
B_ACTIVE_NAME_WITH_PREFIX = FD 12 | ||||||||||
@ FD 12 - preiously gActiveBattler with prefix | ||||||||||
B_SCR_ACTIVE_NAME_WITH_PREFIX = FD 13 | ||||||||||
B_CURRENT_MOVE = FD 14 | ||||||||||
B_LAST_MOVE = FD 15 | ||||||||||
|
@@ -409,8 +409,8 @@ B_ATK_TEAM2 = FD 38 | |||||||||
B_DEF_NAME = FD 39 | ||||||||||
B_DEF_TEAM1 = FD 3A | ||||||||||
B_DEF_TEAM2 = FD 3B | ||||||||||
B_ACTIVE_NAME = FD 3C | ||||||||||
B_ACTIVE_NAME2 = FD 3D @ no Illusion check | ||||||||||
@ FD 3C - preiously gActiveBattler | ||||||||||
@ FD 3D - preiously gActiveBattler without Illusion Check | ||||||||||
Comment on lines
+412
to
+413
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
@ indicates the end of a town/city name (before " TOWN" or " CITY") | ||||||||||
NAME_END = FC 00 | ||||||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,6 +112,7 @@ BattleScript_ItemSetFocusEnergy:: | |
setfocusenergy | ||
playmoveanimation BS_ATTACKER, MOVE_FOCUS_ENERGY | ||
waitanimation | ||
copybyte sBATTLER, gBattlerAttacker | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Spaces instead of tab. |
||
printstring STRINGID_PKMNUSEDXTOGETPUMPED | ||
waitmessage B_WAIT_TIME_LONG | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.