This repository was archived by the owner on May 22, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 457
"Jestographic Sequencer", a clown-exclusive traitor item & tweaks #19832
Merged
Merged
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
2194511
literal misinformation
Runian aef4702
objs, comsigs, bitfields & proc
Runian da16a69
consistent
Runian 3318d3e
add cmag item
Runian b1d190e
ai no interact w/ cmag
Runian 5e5e6ec
consistent
Runian 1b3a655
functionality
Runian 71f5f95
all done. after = fixes/more features
Runian bba2d92
5 to SOOTH the balance council
Runian cd0fd5d
use sprite
Runian b8c14f1
lol nvm decrease to 4
Runian fd5c82c
-ful
Runian 4e84e34
why was this flipped
Runian 8cfd2d1
forgot a laugh here
Runian 59792fa
Merge branch 'yogstation13:master' into HONK-cmeg
Runian 6138186
conversion pt.1
Runian e26108c
conversion, uh next
Runian d453e0e
Merge branch 'yogstation13:master' into HONK-cmeg
Runian c0169e1
how do i even delete this??
Runian c5f1744
true false everywhere
Runian 5bbfad1
EVERYWHERE
Runian 40c1b96
epic fail
Runian 83f1857
move it up
Runian 0784967
dont need to return here
Runian 77ba783
probably dont need these nulls
Runian 6900580
dont need this here either
Runian be3dcb3
last pass
Runian 54a9164
yep
Runian 307601e
charges
Runian d8b9acc
max_charges
Runian b883f0a
Merge branch 'master' into HONK-cmeg
Runian c122734
space
Runian eef5ca1
Merge branch 'yogstation13:master' into HONK-cmeg
Runian 8c870a4
Merge branch 'master' into HONK-cmeg
Runian bffa10b
removed unused var
Runian d58e9d1
Merge branch 'yogstation13:master' into HONK-cmeg
Runian 1d57bac
as requested
Runian e4ddef5
unneeded check
Runian 8d439f6
Update code/game/machinery/porta_turret/portable_turret_cover.dm
Runian eec77ac
Update code/game/machinery/porta_turret/portable_turret_cover.dm
Runian 0eaa5c4
Update yogstation/code/game/objects/structures/fireaxe.dm
Runian 022ffe8
Update yogstation/code/game/objects/structures/fireaxe.dm
Runian 6a0f4f9
Update code/game/objects/items/clown_items.dm
Runian bfea242
update_desc for fireaxe
Runian ad41074
update_name for lightreplacer
Runian 4d7a581
replaces active cmag tell with a bikehorn
Runian 33f0937
/emag/cmag -> /cmag
Runian bc79acd
SHOULD_CALL_PARENT(FALSE)
Runian 63957fc
Merge branch 'master' into HONK-cmeg
JohnFulpWillard 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -94,7 +94,6 @@ | |
| var/base_pixel_y = 0 | ||
| ///the base icon state used for anything that changes their icon state. | ||
| var/base_icon_state | ||
|
|
||
| ///Mobs that are currently do_after'ing this atom, to be cleared from on Destroy() | ||
| var/list/targeted_by | ||
|
|
||
|
|
@@ -798,10 +797,16 @@ | |
| /** | ||
| * Respond to an emag being used on our atom | ||
| * | ||
| * Default behaviour is to send COMSIG_ATOM_EMAG_ACT and return | ||
| * Args: | ||
| * * mob/user: The mob that used the emag. Nullable. | ||
| * * obj/item/card/emag/emag_card: The emag that was used. Nullable. | ||
| * | ||
| * Returns: | ||
| * TRUE if the emag had any effect, falsey otherwise. | ||
| */ | ||
| /atom/proc/emag_act() | ||
| SEND_SIGNAL(src, COMSIG_ATOM_EMAG_ACT) | ||
| /atom/proc/emag_act(mob/user, obj/item/card/emag/emag_card) | ||
| SHOULD_CALL_PARENT(FALSE) // Emag act should either be: overridden (no signal) or default (signal). | ||
| return (SEND_SIGNAL(src, COMSIG_ATOM_EMAG_ACT, user, emag_card)) | ||
|
Contributor
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.
Contributor
Author
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. Not many other acts (i.e, |
||
|
|
||
| /** | ||
| * Respond to a radioactive wave hitting this atom | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.
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.
NO IT SHOULD BE TRUEE
though I guess it would require a lot more work with emags. Perhaps best to leave for a future PR, don't want to get this one more creeped than it is now
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.
Wouldn't it just be adding ..() to every
emag_act?