From a869cb397fc1bc86669d3893faf550df88f40af5 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Wed, 9 Sep 2020 00:14:28 +0000 Subject: [PATCH 1/5] Automatic changelog compile [ci skip] --- html/changelog.html | 33 +++++++--------------- html/changelogs/.all_changelog.yml | 5 ++++ html/changelogs/AutoChangeLog-pr-13344.yml | 4 --- html/changelogs/AutoChangeLog-pr-13353.yml | 4 --- 4 files changed, 15 insertions(+), 31 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13344.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13353.yml diff --git a/html/changelog.html b/html/changelog.html index d188dfc3cb..f440b8c76c 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,16 @@ -->
+

09 September 2020

+

Putnam3145 updated:

+ +

timothyteakettle updated:

+ +

08 September 2020

Ghommie updated:

- -

08 July 2020

-

DeltaFire15 updated:

- -

EmeraldSundisk updated:

- -

Owai-Seek updated:

-
GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index e891d2f885..f8f47e456e 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -27270,3 +27270,8 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - soundadd: added borg_deathsound.ogg and android_scream.ogg silicons: - balance: meteor waves now have a static 5 minute timer. +2020-09-09: + Putnam3145: + - bugfix: Made superconductivity work for the first time literally ever. + timothyteakettle: + - bugfix: accents work better diff --git a/html/changelogs/AutoChangeLog-pr-13344.yml b/html/changelogs/AutoChangeLog-pr-13344.yml deleted file mode 100644 index 50a2a93967..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13344.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Putnam3145" -delete-after: True -changes: - - bugfix: "Made superconductivity work for the first time literally ever." diff --git a/html/changelogs/AutoChangeLog-pr-13353.yml b/html/changelogs/AutoChangeLog-pr-13353.yml deleted file mode 100644 index d98512a0ad..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13353.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - bugfix: "accents work better" From 67000cd182610dd2af6cec84b1e78cf39fcaf078 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Thu, 10 Sep 2020 00:13:57 +0000 Subject: [PATCH 2/5] Automatic changelog compile [ci skip] --- html/changelog.html | 7 ------- 1 file changed, 7 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index f440b8c76c..2b6b76f920 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -1435,13 +1435,6 @@ - -

09 July 2020

-

timothyteakettle updated:

- GoonStation 13 Development Team From b8c0c77b715f363ca7b68e61e291e2c541001517 Mon Sep 17 00:00:00 2001 From: Putnam Date: Wed, 9 Sep 2020 22:24:54 -0700 Subject: [PATCH 3/5] Makes atmos not get stuck at very cold --- code/modules/atmospherics/environmental/LINDA_turf_tile.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm index 14f480d33a..0c6ca13e86 100644 --- a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm +++ b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm @@ -331,6 +331,7 @@ var/heat = thermal_conductivity*delta_temperature* \ (heat_capacity*HEAT_CAPACITY_VACUUM/(heat_capacity+HEAT_CAPACITY_VACUUM)) temperature -= heat/heat_capacity + temperature = max(temperature,T0C) //otherwise we just sorta get stuck at super cold temps forever /turf/open/proc/temperature_share_open_to_solid(turf/sharer) sharer.temperature = air.temperature_share(null, sharer.thermal_conductivity, sharer.temperature, sharer.heat_capacity) @@ -344,3 +345,5 @@ temperature -= heat/heat_capacity sharer.temperature += heat/sharer.heat_capacity + temperature = max(temperature,T0C) + sharer.temperature = max(sharer.temperature,T0C) From f88bd9c4d312bd1e867caee68e08404178770911 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 10 Sep 2020 00:36:40 -0500 Subject: [PATCH 4/5] Automatic changelog generation for PR #13378 [ci skip] --- html/changelogs/AutoChangeLog-pr-13378.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13378.yml diff --git a/html/changelogs/AutoChangeLog-pr-13378.yml b/html/changelogs/AutoChangeLog-pr-13378.yml new file mode 100644 index 0000000000..c367629476 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13378.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - balance: "Superconducting turfs now can't go below 0 celsius." From bceef0d06aa9b95bd346eb7b9ab18c479caf5424 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Fri, 11 Sep 2020 00:14:11 +0000 Subject: [PATCH 5/5] Automatic changelog compile [ci skip] --- html/changelog.html | 26 +++++----------------- html/changelogs/.all_changelog.yml | 3 +++ html/changelogs/AutoChangeLog-pr-13378.yml | 4 ---- 3 files changed, 9 insertions(+), 24 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13378.yml diff --git a/html/changelog.html b/html/changelog.html index 2b6b76f920..d3d490689d 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,12 @@ -->
+

11 September 2020

+

Putnam3145 updated:

+
    +
  • Superconducting turfs now can't go below 0 celsius.
  • +
+

09 September 2020

Putnam3145 updated:

    @@ -1415,26 +1421,6 @@
    • Gas mixtures now live entirely in a DLL.
    - -

    10 July 2020

    -

    Chiirno updated:

    -
      -
    • Gave jellypeople a unique brain object /obj/item/organ/brain/jelly
    • -
    • added an icon for jellypeople brains.
    • -
    -

    EmeraldSundisk updated:

    -
      -
    • Adds a pool to PubbyStation
    • -
    • Slight adjustments to the surrounding area as to fit said pool
    • -
    -

    Sneakyrat6 updated:

    -
      -
    • Fixes hair falling out of hoodies.
    • -
    -

    TheObserver-sys updated:

    -
      -
    • Actually adds the juice reagent to make laugh peas donuts.
    • -
GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index f8f47e456e..6b214a58f5 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -27275,3 +27275,6 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - bugfix: Made superconductivity work for the first time literally ever. timothyteakettle: - bugfix: accents work better +2020-09-11: + Putnam3145: + - balance: Superconducting turfs now can't go below 0 celsius. diff --git a/html/changelogs/AutoChangeLog-pr-13378.yml b/html/changelogs/AutoChangeLog-pr-13378.yml deleted file mode 100644 index c367629476..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13378.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Putnam3145" -delete-after: True -changes: - - balance: "Superconducting turfs now can't go below 0 celsius."