Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tgui/packages/tgui/interfaces/ChemMaster.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ const PackagingControls = (props, context) => {
label="Gummy Bears"
amount={gummyAmount}
amountUnit="gummies"
sideNote="max 15u"
sideNote="max 30u"
onChangeAmount={(e, value) => setGummyAmount(value)}
onCreate={() => act('create', {
type: 'gummy',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
var/apply_type = INGEST
var/apply_method = "chew"
var/rename_with_volume = FALSE
var/self_delay = 1.5 SECONDS
var/self_delay = 1 SECONDS
var/dissolvable = TRUE

/obj/item/reagent_containers/gummy/Initialize()
Expand Down Expand Up @@ -179,7 +179,7 @@
color = null

/obj/item/reagent_containers/gummy/floorbear/Initialize()
list_reagents = list(get_random_reagent_id() = 15)
list_reagents = list(get_random_reagent_id() = 30)
. = ..()
name = pick(names2)
if(prob(20))
Expand Down