-
Notifications
You must be signed in to change notification settings - Fork 275
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
New plant trait and dank vescicles bug fix #2342
Merged
Merged
Changes from 20 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
cbe164b
adds new trait and bug fixes
RafRoq f26d6fc
Merge branch 'master' of https://github.com/Monkestation/Monkestation…
RafRoq ee6128a
add gene to uplink
RafRoq cb236d8
remove noreact from strange seeds opsie
RafRoq c4dbedf
bug fix for real now
RafRoq 7c795c1
Update code/modules/hydroponics/unique_plant_genes.dm
RafRoq 5238df0
Update code/modules/hydroponics/grown.dm
RafRoq c1c2136
Update code/modules/hydroponics/plant_genes.dm
RafRoq 3bfbd65
Update code/modules/hydroponics/grown.dm
RafRoq 28d8132
Update code/modules/hydroponics/grown.dm
RafRoq e21e7ae
Update code/modules/hydroponics/grown.dm
RafRoq bcd1de9
Update code/modules/hydroponics/grown.dm
RafRoq 199683a
Update code/modules/hydroponics/grown.dm
RafRoq 2c11107
Merge branch 'master' of https://github.com/Monkestation/Monkestation…
RafRoq f551d70
Merge branch 'botany/3' of https://github.com/RafRoq/Monkestation2.0 …
RafRoq 7063378
resolve comments
RafRoq 69569e0
resolve comments
RafRoq 4fea34b
...
RafRoq e193629
fix potency limiter bug
RafRoq efa34ee
i'm making a piss mess
RafRoq 1a1ed6a
Merge branch 'master' of https://github.com/Monkestation/Monkestation…
RafRoq 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 | ||||
---|---|---|---|---|---|---|
|
@@ -426,6 +426,10 @@ | |||||
var/read_only = 0 //Well, it's still a floppy disk | ||||||
obj_flags = UNIQUE_RENAME | ||||||
|
||||||
/obj/item/disk/plantgene/syndicate // Monkestation item | ||||||
gene = new /datum/plant_gene/trait/noreact | ||||||
read_only = 1 | ||||||
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
|
||||||
|
||||||
/obj/item/disk/plantgene/Initialize(mapload) | ||||||
. = ..() | ||||||
add_overlay("datadisk_gene") | ||||||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,11 @@ | |
|
||
/datum/uplink_item/role_restricted/modified_syringe_gun | ||
surplus = 50 | ||
|
||
/datum/uplink_item/role_restricted/syndicate_plant_gene | ||
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. this is silly, but can you move this further up in the file, so I can TM this without conflicts? |
||
name = "Catalytic Inhibitor Serum Plant Data Disk" | ||
desc = "This plant data disk contains the genetic blueprint for the Catalytic Inhibitor Serum gene.\ | ||
enabling plants to produce a serum that halts all internal chemical reactions" | ||
item = /obj/item/disk/plantgene/syndicate | ||
cost = 20 | ||
restricted_roles = list(JOB_BOTANIST) |
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.
fix this while ya here i guess