mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
Grammar: Te spelling mistake I've been staring at for hours (#73385)
## About The Pull Request I noticed `/datum/tgui`'s DMDOC Comment on `var/title` misspelled `the` as `te` while doing some unholy UI experiments, so I was going to PR a correction so I can stop thinking about it. Though to be safe I checked if it happened more than once, apparently it has happened thrice.
This commit is contained in:
@@ -655,8 +655,9 @@ Then we space some of our heat, and think about if we should stop conducting.
|
||||
return FALSE
|
||||
return ..()
|
||||
|
||||
/turf/proc/radiate_to_spess() //Radiate excess tile heat to space
|
||||
if(temperature <= T0C) //Considering 0 degC as te break even point for radiation in and out
|
||||
/// Radiate excess tile heat to space.
|
||||
/turf/proc/radiate_to_spess()
|
||||
if(temperature <= T0C) // Considering 0 degC as the break even point for radiation in and out.
|
||||
return
|
||||
// Because we keep losing energy, makes more sense for us to be the T2 here.
|
||||
var/delta_temperature = temperature_archived - TCMB //hardcoded space temperature
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
var/mob/user
|
||||
/// The object which owns the UI.
|
||||
var/datum/src_object
|
||||
/// The title of te UI.
|
||||
/// The title of the UI.
|
||||
var/title
|
||||
/// The window_id for browse() and onclose().
|
||||
var/datum/tgui_window/window
|
||||
|
||||
@@ -618,7 +618,7 @@ const TechNode = (props, context) => {
|
||||
</ProgressBar>
|
||||
);
|
||||
|
||||
// Notice this logic will have te be changed if we make the discounts
|
||||
// Notice that this logic will have to be changed if we make the discounts
|
||||
// pool-specific
|
||||
const nodeDiscount = Object.keys(discount_experiments)
|
||||
.filter((x) => experiments[x]?.completed)
|
||||
|
||||
Reference in New Issue
Block a user