-
Notifications
You must be signed in to change notification settings - Fork 565
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
Revive Fixes for Boiler: IFF Gas and Cause Data #3577
Merged
morrowwolf
merged 16 commits into
cmss13-devs:master
from
Drulikar:Revive_Xeno_IFF_Fixes
Jun 26, 2023
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f7d712b
Processes neurotoxin for unconscious people
TeDGamer 7cc1272
Add last damage data for neurotoxin
TeDGamer 380ec8a
Handle cause data in parent datum effects
TeDGamer a585ede
Set boiler as owner of neuro effect for tail stabs
TeDGamer 48e63c9
Fix bombard's cause data
TeDGamer e457ff1
Adds unused cause_data for now in child proc of set_up
TeDGamer 5433d36
Fix acid shroud gas
TeDGamer 7e3fe4a
Fix death cause name
TeDGamer 399b5a2
Use effect name
TeDGamer 3da1ea6
Setup cause data for chem smoke similar to regular smoke spread
TeDGamer 694daa3
Merge remote-tracking branch 'upstream/master' into Revive_Xeno_IFF_F…
Drulikar b5d25e8
More boiler cause_data fixes
Drulikar b9408f0
Fix IFF gas for boiler gibbing
Drulikar 7ade69a
Fix var names
Drulikar 91e7e2b
EXPERIMENTAL: Apply suggestions from code review
Drulikar 1e445d8
More neuro cause_data fixes
Drulikar 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
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
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.
not entirely sure why this is preferable to
generally messing with the ..() signature can result in some particularly weird issues - but if this is fixing an issue i'm overlooking lmk
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.
The parent constructor takes four arguments, this constructor is taking two: but in the case of this we want the third argument to always be effect_name and we don't care about the fourth argument.
Also the cause_data should contain the mob from.
Ultimately changing this will mean we waste the construction of cause_data in the parent because we need to redo it if we don't provide those three arguments to the parent constructor.
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.
Currently reverted this change since I think its better to reduce the amount of times cause_data is constructed.