mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
Correct grammar, tags, procs involving food processing (#74097)
The wording of microwable/grillable/processable outputs now takes into accounts plurals. For example, the examine text for an onion slice is now: "The onion slices can be baked into _some_ onion rings", rather than "an onion rings". - Examining microwavable things now uses "can be", rather than "could be"; the same verb as bakeable and griddlable. - Processing atoms now uses `plural_s()` rather than just a flat `/s`, which is unreliable. - The use of `<b>` tags has been changed to `span_bold()`.
This commit is contained in:
@@ -92,7 +92,10 @@
|
||||
|
||||
if(!current_bake_time) //Not baked yet
|
||||
if(positive_result)
|
||||
examine_list += span_notice("[parent] can be <b>baked</b> into \a [initial(bake_result.name)].")
|
||||
if(initial(bake_result.gender) == PLURAL)
|
||||
examine_list += span_notice("[parent] can be [span_bold("baked")] into some [initial(bake_result.name)].")
|
||||
else
|
||||
examine_list += span_notice("[parent] can be [span_bold("baked")] into \a [initial(bake_result.name)].")
|
||||
return
|
||||
|
||||
if(positive_result)
|
||||
|
||||
Reference in New Issue
Block a user