From b62e3d301c313626b3c1a17f1017280701f55468 Mon Sep 17 00:00:00 2001 From: skull132 Date: Tue, 16 Feb 2016 01:28:05 +0200 Subject: [PATCH 1/5] More dbcore.dm Debugging This should make future errors trackable during runtime, for easier fixes. --- code/defines/procs/dbcore.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/defines/procs/dbcore.dm b/code/defines/procs/dbcore.dm index 805726ba748..cd5f5dcdbd9 100644 --- a/code/defines/procs/dbcore.dm +++ b/code/defines/procs/dbcore.dm @@ -181,6 +181,7 @@ DBQuery/proc/SetConversion(column,conversion) */ DBQuery/proc/parseArguments(var/query_to_parse = null, var/list/argument_list, var/pass_not_found = 0) if (!query_to_parse || !argument_list || !argument_list.len) + log_debug("parseArguments() failed! Improper arguments sent!") return 0 for (var/placeholder in argument_list) @@ -188,6 +189,7 @@ DBQuery/proc/parseArguments(var/query_to_parse = null, var/list/argument_list, v if (pass_not_found) continue else + log_debug("parseArguments() failed! Key not found: [placeholder].") return 0 var/argument = argument_list[placeholder] @@ -199,6 +201,7 @@ DBQuery/proc/parseArguments(var/query_to_parse = null, var/list/argument_list, v else if (isnum(argument)) argument = "'[argument]'" else + log_debug("parseArguments() failed! Cannot identify argument!") return 0 query_to_parse = replacetextEx(query_to_parse, placeholder, argument) From 947844120115c9665fab4ef7d59dbf2da261f7f2 Mon Sep 17 00:00:00 2001 From: skull132 Date: Tue, 16 Feb 2016 01:28:28 +0200 Subject: [PATCH 2/5] Player Notes Edit Typos are awful. --- code/modules/admin/player_notes_sql.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/player_notes_sql.dm b/code/modules/admin/player_notes_sql.dm index 588abca9e6c..44416a11a82 100644 --- a/code/modules/admin/player_notes_sql.dm +++ b/code/modules/admin/player_notes_sql.dm @@ -79,7 +79,7 @@ usr << "Cancelled" return var/DBQuery/editquery = dbcon.NewQuery("UPDATE ss13_notes SET content = :new_content, lasteditor = :a_ckey, lasteditdate = Now(), edited = 1 WHERE id = :note_id") - editquery.Execute(list(":new_conent" = new_content, ":a_ckey" = usr.client.ckey, ":note_id" = note_id)) + editquery.Execute(list(":new_content" = new_content, ":a_ckey" = usr.client.ckey, ":note_id" = note_id)) /datum/admins/proc/show_notes_sql(var/player_ckey = null, var/admin_ckey = null) if (!check_rights(R_ADMIN|R_MOD)) From be4840f920f0771a108dd11fccc97454f4bebd58 Mon Sep 17 00:00:00 2001 From: skull132 Date: Tue, 16 Feb 2016 01:28:57 +0200 Subject: [PATCH 3/5] Warnings Fixes For editing them, and for editing them. --- code/modules/admin/verbs/warning.dm | 2 +- code/modules/client/client procs.dm | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/warning.dm b/code/modules/admin/verbs/warning.dm index e7476221079..192d8fc4ede 100644 --- a/code/modules/admin/verbs/warning.dm +++ b/code/modules/admin/verbs/warning.dm @@ -375,7 +375,7 @@ if ("delete") if(alert("Delete this warning?", "Delete?", "Yes", "No") == "Yes") var/DBQuery/deleteQuery = dbcon.NewQuery("UPDATE ss13_warnings SET visible = 0 WHERE id = :warning_id") - deleteQuery.Execute(query_details) + deleteQuery.Execute(query_details, 1) message_admins("\blue [key_name_admin(usr)] deleted one of [ckey]'s warnings.") log_admin("[key_name(usr)] deleted one of [ckey]'s warnings.") diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index d47c438443c..578902d9c04 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -67,6 +67,13 @@ if("prefs") return prefs.process_link(usr,href_list) if("vars") return view_var_Topic(href,href_list,hsrc) + if(href_list["warnacknowledge"]) + var/queryid = text2num(href_list["warnacknowledge"]) + warnings_acknowledge(queryid) + + if(href_list["warnview"]) + warnings_check() + ..() //redirect to hsrc.Topic() /client/proc/handle_spam_prevention(var/message, var/mute_type) From e309f2216a249ca4549c60a338b3bf17e85444e1 Mon Sep 17 00:00:00 2001 From: skull132 Date: Tue, 16 Feb 2016 01:44:27 +0200 Subject: [PATCH 4/5] Dev Perms For Days --- code/modules/admin/admin.dm | 2 +- code/modules/admin/verbs/adminjump.dm | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 508edb03fd2..099256ac43a 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -1081,7 +1081,7 @@ proc/admin_notice(var/message, var/rights) set desc = "(atom path) Spawn an atom" set name = "Spawn" - if(!check_rights(R_SPAWN)) return + if(!check_rights(R_SPAWN|R_DEV)) return var/list/types = typesof(/atom) var/list/matches = new() diff --git a/code/modules/admin/verbs/adminjump.dm b/code/modules/admin/verbs/adminjump.dm index e579ca15444..6d45b622910 100644 --- a/code/modules/admin/verbs/adminjump.dm +++ b/code/modules/admin/verbs/adminjump.dm @@ -8,7 +8,7 @@ set name = "Jump to Area" set desc = "Area to jump to" set category = "Admin" - if(!check_rights(R_ADMIN|R_MOD|R_DEBUG)) + if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(config.allow_admin_jump) @@ -24,7 +24,7 @@ /client/proc/jumptoturf(var/turf/T in world) set name = "Jump to Turf" set category = "Admin" - if(!check_rights(R_ADMIN|R_MOD|R_DEBUG)) + if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(config.allow_admin_jump) log_admin("[key_name(usr)] jumped to [T.x],[T.y],[T.z] in [T.loc]") @@ -40,7 +40,7 @@ set category = "Admin" set name = "Jump to Mob" - if(!check_rights(R_ADMIN|R_MOD|R_DEBUG)) + if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(config.allow_admin_jump) @@ -62,7 +62,7 @@ set category = "Admin" set name = "Jump to Coordinate" - if(!check_rights(R_ADMIN|R_MOD|R_DEBUG)) + if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if (config.allow_admin_jump) @@ -82,7 +82,7 @@ set category = "Admin" set name = "Jump to Key" - if(!check_rights(R_ADMIN|R_MOD|R_DEBUG)) + if(!check_rights(R_ADMIN|R_MOD|R_DEBUG|R_DEV)) return if(config.allow_admin_jump) From f8bd9ef78312a1dbf2e2b37e32e3c452bbed8194 Mon Sep 17 00:00:00 2001 From: skull132 Date: Tue, 16 Feb 2016 04:28:01 -0500 Subject: [PATCH 5/5] Changelog Update --- html/changelog.html | 56 + html/changelogs/.all_changelog.yml | 2620 ++++++++--------- html/changelogs/Ryan784-development.yml | 14 - html/changelogs/Skull132-development.yml | 12 - .../[Lord Lag]-[Synthetic Language fix].yml | 6 - .../[Lord Lag]-[Vaurca Flag work around].yml | 6 - html/changelogs/ladyofravens-development.yml | 7 - html/changelogs/lordlag-development.yml | 6 - html/changelogs/mahzel-development.yml | 8 - 9 files changed, 1235 insertions(+), 1500 deletions(-) delete mode 100644 html/changelogs/Ryan784-development.yml delete mode 100644 html/changelogs/Skull132-development.yml delete mode 100644 html/changelogs/[Lord Lag]-[Synthetic Language fix].yml delete mode 100644 html/changelogs/[Lord Lag]-[Vaurca Flag work around].yml delete mode 100644 html/changelogs/ladyofravens-development.yml delete mode 100644 html/changelogs/lordlag-development.yml delete mode 100644 html/changelogs/mahzel-development.yml diff --git a/html/changelog.html b/html/changelog.html index 3b3bb449ae9..e50f75e62f7 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -56,6 +56,62 @@ -->
+

15 February 2016

+

Lord Lag updated:

+
    +
  • Synthetics should now be able to understand Rootspeak and Vaurcese.
  • +
  • Core Vaurca mechanics are back
  • +
+ +

12 February 2016

+

Ryan784 updated:

+
    +
  • Fixed ChemMaster pill creation spam.
  • +
  • Chaplains can no longer be Vampires.
  • +
  • IPCs will no longer be considered for innapropriate antag positions (Vampire and Changeling).
  • +
  • Changelings will now retain proper abilities using lesser form, and the ability to transform back.
  • +
  • pAI suicide now works correctly.
  • +
+ +

01 February 2016

+

Lady of Ravens updated:

+
    +
  • Ported Aurora's stungloves and modified force gloves.
  • +
  • Ported Aurora's mechanics of heavy machinery eating hair.
  • +
+

Lord Lag updated:

+
    +
  • Ported the Vaurca.
  • +
+

Mahzel updated:

+
    +
  • Ported Aurora's intern positions.
  • +
  • Ported Aurora's magnetic door locks.
  • +
  • Ported Aurora's prisoner suits.
  • +
+

Ryan784 updated:

+
    +
  • Ported Aurora's null-rod conversion mechanics for cult.
  • +
  • Ported Aurora's welderbomb delay and related admin/mod actions.
  • +
  • Ported Aurora's horsemask removal spell.
  • +
  • Ported Aurora's glove kits for aliens.
  • +
  • Ported Aurora's gold slime mechanics.
  • +
  • Ported Aurora's lawgiver.
  • +
  • Ported the AI HUD, originally by Jack-Fractal.
  • +
  • Ported Aurora's footstep sounds.
  • +
  • Ported the vampire code. Needs a lot of testing and may break.
  • +
+

Skull132 updated:

+
    +
  • Ported Telescience from TGStation.
  • +
  • Ported Aurora's old rifle code, with minor refractors.
  • +
  • Ported Aurora's forensics code. Code refractored by Zuhayr.
  • +
  • Ported SQL based whitelisting, playernotes, warnings. Refractored where necessary.
  • +
  • Adjusted the Bay12 paralyze player function to work as our wind function used to work. It also now gives warnings to people nearby if someone was winded.
  • +
  • Made tasers to actually fire projectiles again. And not lasers. Tasers are not lasers, sillys.
  • +
  • Handcuffing does not require you to have the person in level 2 grab, as it does in vanilla bay.
  • +
+

06 December 2015

Hubblenaut updated:

    diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index cd8d552d8ef..9c59c09edf8 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -1,1250 +1,1007 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. --- 2013-01-07: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'tgs': !!python/unicode 'Updated server to tgstation r5200 (November - 26th, 2012), see https://code.google.com/p/tgstation13/source/list - for tg''s changelog.' - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Implants: Explosvie implant, exploding - when victim hears the codephrase you set.' - - !!python/unicode 'rscadd': !!python/unicode 'Implants: Compressed Matter implat, - scan item (making it disappear), inject yourself and recall that item on will!' - - !!python/unicode 'rscadd': !!python/unicode 'Implant removal surgery, with !!FUN!! - results if you mess up it.' - - !!python/unicode 'rscadd': !!python/unicode 'Coats now have pockets again.' - - !!python/unicode 'rscadd': !!python/unicode 'Bash people on tabetops. an windows, - or with stools. Grab people to bash them on tables or windows (better grab for - better hit on windows). Drag stool sprite on you to pick it up, click on it - in hand to make it usual stool again.' - - !!python/unicode 'rscadd': !!python/unicode 'Surgical caps, and new sprites for - bloodbags and fixovein.' - - !!python/unicode 'rscadd': !!python/unicode 'Now some surgery steps will bloody - your hands, Full-body blood coat in case youy mess up spectacualry.' - - !!python/unicode 'rscadd': !!python/unicode 'Ported some crates (Art, Surgery, - Sterile equiplemnt).' - - !!python/unicode 'tweak': !!python/unicode 'Changed contraband crates. Posters - moved to Art Crate, cigs and lipstick ot party crate. Now contraband crate has - illegal booze and illicit drugs.' - - !!python/unicode 'bugfix': !!python/unicode 'Finally got evac party lights' - - !!python/unicode 'bugfix': !!python/unicode 'Now disfigurment,now it WILL happen - when damage is bad enough.' - - !!python/unicode 'experiment': !!python/unicode 'Now if you speak in depressurized - area (less than 10 kPa) only people next to you can hear you. Radios still work - though.' + Cael_Aislinn: + - tgs: Updated server to tgstation r5200 (November 26th, 2012), see https://code.google.com/p/tgstation13/source/list + for tg's changelog. + Chinsky: + - rscadd: 'Implants: Explosvie implant, exploding when victim hears the codephrase + you set.' + - rscadd: 'Implants: Compressed Matter implat, scan item (making it disappear), + inject yourself and recall that item on will!' + - rscadd: Implant removal surgery, with !!FUN!! results if you mess up it. + - rscadd: Coats now have pockets again. + - rscadd: Bash people on tabetops. an windows, or with stools. Grab people to bash + them on tables or windows (better grab for better hit on windows). Drag stool + sprite on you to pick it up, click on it in hand to make it usual stool again. + - rscadd: Surgical caps, and new sprites for bloodbags and fixovein. + - rscadd: Now some surgery steps will bloody your hands, Full-body blood coat in + case youy mess up spectacualry. + - rscadd: Ported some crates (Art, Surgery, Sterile equiplemnt). + - tweak: Changed contraband crates. Posters moved to Art Crate, cigs and lipstick + ot party crate. Now contraband crate has illegal booze and illicit drugs. + - bugfix: Finally got evac party lights + - bugfix: Now disfigurment,now it WILL happen when damage is bad enough. + - experiment: Now if you speak in depressurized area (less than 10 kPa) only people + next to you can hear you. Radios still work though. 2013-01-13: - !!python/unicode 'Chinsky': - - !!python/unicode 'tweak': !!python/unicode 'If you get enough (6) blood drips - on one tile, it''ll turn into a blood puddle. Should make bleeding out more - visible.' - - !!python/unicode 'tweak': !!python/unicode 'Security belt now able to hold taser, - baton and tape roll.' - - !!python/unicode 'tweak': !!python/unicode 'Added alternative security uniform - to Security wardrobes.' - - !!python/unicode 'rscadd': !!python/unicode 'Ported Urist cult runes. Down with - the crayon drawings! Example: http://dl.dropbox.com/u/26846767/images/SS13/255_symbols.PNG' - - !!python/unicode 'bugfix': !!python/unicode 'Engineering tape now require engineer - OR atmos access instead of both.' - - !!python/unicode 'rscadd': !!python/unicode 'Implants now will react to EMP, possibly - in !!FUN!! ways' - !!python/unicode 'GauHelldragon': - - !!python/unicode 'rscadd': !!python/unicode 'Servicebots now have RoboTray and - Printing Pen. Robotray can be used to pick up and drop food/drinks. Printing - pen can alternate between writing mode and rename paper mode by clicking it.' - - !!python/unicode 'rscadd': !!python/unicode 'Farmbots. A new type of robot that - weeds, waters and fertilizes. Use robot arm on water tank. Then use plant analyzer, - mini-hoe, bucket and finally proximity sensor.' - - !!python/unicode 'rscadd': !!python/unicode 'Chefs can clang their serving trays - with a rolling pin. Just like a riot shield!' + Chinsky: + - tweak: If you get enough (6) blood drips on one tile, it'll turn into a blood + puddle. Should make bleeding out more visible. + - tweak: Security belt now able to hold taser, baton and tape roll. + - tweak: Added alternative security uniform to Security wardrobes. + - rscadd: 'Ported Urist cult runes. Down with the crayon drawings! Example: http://dl.dropbox.com/u/26846767/images/SS13/255_symbols.PNG' + - bugfix: Engineering tape now require engineer OR atmos access instead of both. + - rscadd: Implants now will react to EMP, possibly in !!FUN!! ways + GauHelldragon: + - rscadd: Servicebots now have RoboTray and Printing Pen. Robotray can be used to + pick up and drop food/drinks. Printing pen can alternate between writing mode + and rename paper mode by clicking it. + - rscadd: Farmbots. A new type of robot that weeds, waters and fertilizes. Use robot + arm on water tank. Then use plant analyzer, mini-hoe, bucket and finally proximity + sensor. + - rscadd: Chefs can clang their serving trays with a rolling pin. Just like a riot + shield! 2013-01-21: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'bugfix': !!python/unicode 'Satchels and ore boxes can now hold - strange rocks.' - - !!python/unicode 'rscadd': !!python/unicode 'Closets and crates can now be built - out of 5 and 10 plasteel respectively.' - - !!python/unicode 'rscadd': !!python/unicode 'Observers can become mice once more.' + Cael_Aislinn: + - bugfix: Satchels and ore boxes can now hold strange rocks. + - rscadd: Closets and crates can now be built out of 5 and 10 plasteel respectively. + - rscadd: Observers can become mice once more. 2013-01-23: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'tgs': !!python/unicode 'Updated server to tgstation r5200 (November - 26th, 2012), see https://code.google.com/p/tgstation13/source/list - for tg''s changelog.' + Cael_Aislinn: + - tgs: Updated server to tgstation r5200 (November 26th, 2012), see https://code.google.com/p/tgstation13/source/list + for tg's changelog. 2013-01-31: - !!python/unicode 'CIB': - - !!python/unicode 'bugfix': !!python/unicode 'Chilis and cold chilis no longer - kill in small amounts' - - !!python/unicode 'bugfix': !!python/unicode 'Chloral now again needs around 5 - units to start killing somebody' + CIB: + - bugfix: Chilis and cold chilis no longer kill in small amounts + - bugfix: Chloral now again needs around 5 units to start killing somebody 2013-02-13: - !!python/unicode 'Erthilo': - - !!python/unicode 'bugfix': !!python/unicode 'Fixed SSD (logged-out) players not - staying asleep.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed set-pose verb and mice emotes - having extra periods.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed virus crate not appearing and - breaking supply shuttle.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed newcaster photos not being - censored.' + Erthilo: + - bugfix: Fixed SSD (logged-out) players not staying asleep. + - bugfix: Fixed set-pose verb and mice emotes having extra periods. + - bugfix: Fixed virus crate not appearing and breaking supply shuttle. + - bugfix: Fixed newcaster photos not being censored. 2013-02-14: - !!python/unicode 'CIB': - - !!python/unicode 'rscadd': !!python/unicode 'Medical side-effects(patients are - going to come back for secondary treatment)' - - !!python/unicode 'rscadd': !!python/unicode 'NT loyalty setting(affects command - reports and gives antags hints who might collaborate with them)' - - !!python/unicode 'tweak': !!python/unicode 'Simple animal balance fixes(They''re - slower now)' - !!python/unicode 'CaelAislinn': - - !!python/unicode 'rscadd': !!python/unicode 'Re-added old ion storm laws, re-added - grid check event.' - - !!python/unicode 'rscadd': !!python/unicode 'Added Rogue Drone and Vermin Infestation - random events.' - - !!python/unicode 'rscadd': !!python/unicode 'Added/fixed space vines random event.' - - !!python/unicode 'tweak': !!python/unicode 'Updates to the virus events.' - - !!python/unicode 'tweak': !!python/unicode 'Spider infestation and alien infestation - events turned off by default.' - - !!python/unicode 'tweak': !!python/unicode 'Soghun, taj and skrell all have unique - language text colours.' - - !!python/unicode 'tweak': !!python/unicode 'Moderators will no longer be listed - in adminwho, instead use modwho.' - !!python/unicode 'Gamerofthegame': - - !!python/unicode 'rscadd': !!python/unicode 'Miscellaneous mapfixes.' + CIB: + - rscadd: Medical side-effects(patients are going to come back for secondary treatment) + - rscadd: NT loyalty setting(affects command reports and gives antags hints who + might collaborate with them) + - tweak: Simple animal balance fixes(They're slower now) + CaelAislinn: + - rscadd: Re-added old ion storm laws, re-added grid check event. + - rscadd: Added Rogue Drone and Vermin Infestation random events. + - rscadd: Added/fixed space vines random event. + - tweak: Updates to the virus events. + - tweak: Spider infestation and alien infestation events turned off by default. + - tweak: Soghun, taj and skrell all have unique language text colours. + - tweak: Moderators will no longer be listed in adminwho, instead use modwho. + Gamerofthegame: + - rscadd: Miscellaneous mapfixes. 2013-02-18: - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'rscadd': !!python/unicode 'Security bots will now target hostile - mobs, and vice versa.' - - !!python/unicode 'tweak': !!python/unicode 'Carp should actually emigrate now, - instead of just immigrating then squatting around the outer hull.' - - !!python/unicode 'tweak': !!python/unicode 'Admins and moderators have been split - up into separate ''who'' verbs (adminwho and modwho respectively).' + Cael Aislinn: + - rscadd: Security bots will now target hostile mobs, and vice versa. + - tweak: Carp should actually emigrate now, instead of just immigrating then squatting + around the outer hull. + - tweak: Admins and moderators have been split up into separate 'who' verbs (adminwho + and modwho respectively). 2013-02-20: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Added new surgery: putting items - inside people. After you use retractor to keep incision open, just click with - any item to put it inside. But be wary, if you try to fit something too big, - you might rip the veins. To remove items, use implant removal surgery.' - - !!python/unicode 'rscadd': !!python/unicode 'Crowbar can be used as alternative - to retractor.' - - !!python/unicode 'rscadd': !!python/unicode 'Can now unload guns by clicking them - in hand.' - - !!python/unicode 'tweak': !!python/unicode 'Fixed distance calculation in bullet - missing chance computation, it was always assuming 1 or 0 tiles. Now distace - REALLY matters when you shoot.' - - !!python/unicode 'rscadd': !!python/unicode 'To add more FUN to previous thing, - bullets missed to not disappear but keep going until they hit something else.' - - !!python/unicode 'bugfix': !!python/unicode 'Compressed Matter and Explosive implants - spawn properly now.' - - !!python/unicode 'tweak': !!python/unicode 'Tweaks to medical effects: removed - itch caused by bandages. Chemical effects now have non-100 chance of appearing, - the stronger medicine, the more probality it''ll have side effects.' + Chinsky: + - rscadd: 'Added new surgery: putting items inside people. After you use retractor + to keep incision open, just click with any item to put it inside. But be wary, + if you try to fit something too big, you might rip the veins. To remove items, + use implant removal surgery.' + - rscadd: Crowbar can be used as alternative to retractor. + - rscadd: Can now unload guns by clicking them in hand. + - tweak: Fixed distance calculation in bullet missing chance computation, it was + always assuming 1 or 0 tiles. Now distace REALLY matters when you shoot. + - rscadd: To add more FUN to previous thing, bullets missed to not disappear but + keep going until they hit something else. + - bugfix: Compressed Matter and Explosive implants spawn properly now. + - tweak: 'Tweaks to medical effects: removed itch caused by bandages. Chemical effects + now have non-100 chance of appearing, the stronger medicine, the more probality + it''ll have side effects.' 2013-02-22: - !!python/unicode 'Chinsky': - - !!python/unicode 'tweak': !!python/unicode 'Change to body cavity surgery. Can - only put items in chest, groind and head. Max size for item - 3 (chest), 2 (groin), - 1 (head). For chest surgery ribs should be bent open, (lung surgery until second - scalpel step). Surgery step needs preparation step, with drill. After that you - can place item inside, or seal it with cautery to do other step instead.' + Chinsky: + - tweak: Change to body cavity surgery. Can only put items in chest, groind and + head. Max size for item - 3 (chest), 2 (groin), 1 (head). For chest surgery + ribs should be bent open, (lung surgery until second scalpel step). Surgery + step needs preparation step, with drill. After that you can place item inside, + or seal it with cautery to do other step instead. 2013-02-23: - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'wip': !!python/unicode 'RUST machinery components should now - be researchable (with high requirements) and orderable through QM (with high - cost).' - - !!python/unicode 'wip': !!python/unicode 'Shield machinery should now be researchable - (with high requirements) and orderable through QM (with high cost). This one - is reportedly buggy.' - - !!python/unicode 'tweak': !!python/unicode 'Rogue vending machines should revert - back to normal at the end of the event.' - - !!python/unicode 'rscadd': !!python/unicode 'New Unathi hair styles.' + Cael Aislinn: + - wip: RUST machinery components should now be researchable (with high requirements) + and orderable through QM (with high cost). + - wip: Shield machinery should now be researchable (with high requirements) and + orderable through QM (with high cost). This one is reportedly buggy. + - tweak: Rogue vending machines should revert back to normal at the end of the event. + - rscadd: New Unathi hair styles. 2013-02-25: - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'rscadd': !!python/unicode 'As well as building hull shield generators, - normal shield gens can now be built (see http://baystation12.net/forums/viewtopic.php?f=1&t;=6993).' - - !!python/unicode 'rscadd': !!python/unicode 'New random events: multiple new system - wide-events have been have been added to the newscaster feeds, some not quite - as respectable as others.' - - !!python/unicode 'rscadd': !!python/unicode 'New random event: some lucky winners - will win the TC Daily Grand Slam Lotto, while others may be the target of malicious - hackers.' + Cael Aislinn: + - rscadd: As well as building hull shield generators, normal shield gens can now + be built (see http://baystation12.net/forums/viewtopic.php?f=1&t;=6993). + - rscadd: 'New random events: multiple new system wide-events have been have been + added to the newscaster feeds, some not quite as respectable as others.' + - rscadd: 'New random event: some lucky winners will win the TC Daily Grand Slam + Lotto, while others may be the target of malicious hackers.' 2013-02-27: - !!python/unicode 'Gamerofthegame': - - !!python/unicode 'rscadd': !!python/unicode 'Added the (base gear) ERT preset - for the debug command.' - - !!python/unicode 'rscadd': !!python/unicode 'Map fixes, Virology hole fixed. Atmospheric - fixes for mining and, to a less extent, the science outpost. (No, not cycling - airlocks)' - - !!python/unicode 'rscadd': !!python/unicode 'Fiddled with the ERT set up location - on Centcom. Radmins will now have a even easier time equiping a team of any - real pratical size, especially coupled with the above debug command.' + Gamerofthegame: + - rscadd: Added the (base gear) ERT preset for the debug command. + - rscadd: Map fixes, Virology hole fixed. Atmospheric fixes for mining and, to a + less extent, the science outpost. (No, not cycling airlocks) + - rscadd: Fiddled with the ERT set up location on Centcom. Radmins will now have + a even easier time equiping a team of any real pratical size, especially coupled + with the above debug command. 2013-03-05: - !!python/unicode 'CIB': - - !!python/unicode 'rscadd': !!python/unicode 'Added internal organs. They''re currently - all located in the chest. Use advanced scanner to detect damage. Use the same - surgery as for ruptured lungs to fix them.' - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'soundadd': !!python/unicode 'Set roundstart music to randomly - choose between space.ogg and traitor.ogg (see http://baystation12.net/forums/viewtopic.php?f=5&t;=6972)' - - !!python/unicode 'experiment': !!python/unicode 'All RUST components except for - TEGs (which generate the power) are now obtainable ingame, bored engineers should - get hold of them and setup an experimental reactor for testing purposes.' + CIB: + - rscadd: Added internal organs. They're currently all located in the chest. Use + advanced scanner to detect damage. Use the same surgery as for ruptured lungs + to fix them. + Cael Aislinn: + - soundadd: Set roundstart music to randomly choose between space.ogg and traitor.ogg + (see http://baystation12.net/forums/viewtopic.php?f=5&t;=6972) + - experiment: All RUST components except for TEGs (which generate the power) are + now obtainable ingame, bored engineers should get hold of them and setup an + experimental reactor for testing purposes. 2013-03-06: - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'rscadd': !!python/unicode 'Type 1 thermoelectric generators - and the associated binary circulators are now moveable (wrench to secure/unsecure) - and orderable via Quartermaster.' - - !!python/unicode 'wip': !!python/unicode 'code/maps/rust_test.dmm contains an - example setup for a functional RUST reactor. Maximum output is in the range - of 12 to 20MW (12 to 20 million watts).' - - !!python/unicode 'bugfix': !!python/unicode 'Removed double announcement for gridchecks, - reduced duration of gridchecks.' - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'You can now stab people with syringes - using the "harm" intent. This destroys the syringe and transfers a random percentage - of its contents into the target. Armor has a 50% chance of blocking the syringe.' + Cael Aislinn: + - rscadd: Type 1 thermoelectric generators and the associated binary circulators + are now moveable (wrench to secure/unsecure) and orderable via Quartermaster. + - wip: code/maps/rust_test.dmm contains an example setup for a functional RUST reactor. + Maximum output is in the range of 12 to 20MW (12 to 20 million watts). + - bugfix: Removed double announcement for gridchecks, reduced duration of gridchecks. + RavingManiac: + - rscadd: You can now stab people with syringes using the "harm" intent. This destroys + the syringe and transfers a random percentage of its contents into the target. + Armor has a 50% chance of blocking the syringe. 2013-03-09: - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'rscadd': !!python/unicode "Beekeeping is now possible. Construct\ - \ an apiary of out wood and embed it into a hydroponics tray, then get a queen\ - \ bee and bottle of BeezEez from cargo bay. \n\t\tHives produce honey and honeycomb,\ - \ but be wary if the bees start swarming." + Cael Aislinn: + - rscadd: "Beekeeping is now possible. Construct an apiary of out wood and embed\ + \ it into a hydroponics tray, then get a queen bee and bottle of BeezEez from\ + \ cargo bay. \n\t\tHives produce honey and honeycomb, but be wary if the bees\ + \ start swarming." 2013-03-11: - !!python/unicode 'CIB': - - !!python/unicode 'rscadd': !!python/unicode 'Cloning now requires you to put slabs - of meat into the cloning pod to replenish biomass.' - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'wip': !!python/unicode 'The xenoarchaeology update is here. - This includes a major content overhaul and a bunch of new features for xenoarchaeology.' - - !!python/unicode 'tweak': !!python/unicode 'Digsites (strange rock deposits) are - now much more nuanced and interesting, and a huge number of minor (non-artifact) - finds have been added.' - - !!python/unicode 'rscadd': !!python/unicode 'Excavation is now a complex process - that involves digging into the rock to the right depth.' - - !!python/unicode 'rscadd': !!python/unicode 'Chemical analysis is required for - safe excavation of the digsites, in order to determine how best to extract the - finds.' - - !!python/unicode 'bugfix': !!python/unicode 'Anomalous artifacts have been overhauled - and many longstanding bugs with existing effects have been fixed - the anomaly - utiliser should now work much more often.' - - !!python/unicode 'rscadd': !!python/unicode 'Numerous new artifact effects have - been added and some new artifact types can be dug up from the asteroid.' - - !!python/unicode 'rscadd': !!python/unicode 'New tools and equipment have been - added, including normal and spaceworthy versions of the anomaly suits, excavation - tools and other neat gadgets.' - - !!python/unicode 'rscadd': !!python/unicode 'Five books have been written by subject - matter experts from around the galaxy to help the crew of the Exodus come to - grips with this exacting new science (over 3000 words of tutorials!).' - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Sec HUDs now can see short versions - of sec records.on examine. Med HUDs do same for medical records, and can set - medical status of patient.' - - !!python/unicode 'rscadd': !!python/unicode 'Damage to the head can now cause - brain damage.' + CIB: + - rscadd: Cloning now requires you to put slabs of meat into the cloning pod to + replenish biomass. + Cael Aislinn: + - wip: The xenoarchaeology update is here. This includes a major content overhaul + and a bunch of new features for xenoarchaeology. + - tweak: Digsites (strange rock deposits) are now much more nuanced and interesting, + and a huge number of minor (non-artifact) finds have been added. + - rscadd: Excavation is now a complex process that involves digging into the rock + to the right depth. + - rscadd: Chemical analysis is required for safe excavation of the digsites, in + order to determine how best to extract the finds. + - bugfix: Anomalous artifacts have been overhauled and many longstanding bugs with + existing effects have been fixed - the anomaly utiliser should now work much + more often. + - rscadd: Numerous new artifact effects have been added and some new artifact types + can be dug up from the asteroid. + - rscadd: New tools and equipment have been added, including normal and spaceworthy + versions of the anomaly suits, excavation tools and other neat gadgets. + - rscadd: Five books have been written by subject matter experts from around the + galaxy to help the crew of the Exodus come to grips with this exacting new science + (over 3000 words of tutorials!). + Chinsky: + - rscadd: Sec HUDs now can see short versions of sec records.on examine. Med HUDs + do same for medical records, and can set medical status of patient. + - rscadd: Damage to the head can now cause brain damage. 2013-03-14: - !!python/unicode 'Spamcat': - - !!python/unicode 'rscadd': !!python/unicode 'Figured I should make one of these. - Syringestabbing now produces a broken syringe complete with fingerprints of - attacker and blood of a victim, so dispose your evidence carefully. Maximum - transfer amount per stab is lowered to 10.' + Spamcat: + - rscadd: Figured I should make one of these. Syringestabbing now produces a broken + syringe complete with fingerprints of attacker and blood of a victim, so dispose + your evidence carefully. Maximum transfer amount per stab is lowered to 10. 2013-03-15: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'rscadd': !!python/unicode 'Mapped a compact research base on - the mining asteroid, with multiple labs and testing rooms. It''s reachable through - a new (old) shuttle dock that leaves from the research wing on the main station.' + Cael_Aislinn: + - rscadd: Mapped a compact research base on the mining asteroid, with multiple labs + and testing rooms. It's reachable through a new (old) shuttle dock that leaves + from the research wing on the main station. 2013-03-26: - !!python/unicode 'Spamcat': - - !!python/unicode 'bugfix': !!python/unicode 'Chemmaster now puts pills in pill - bottles (if one is inserted).' - - !!python/unicode 'tweak': !!python/unicode 'Stabbing someone with a syringe now - deals 3 damage instead of 7 because 7 is like, a crowbar punch.' - - !!python/unicode 'bugfix': !!python/unicode 'Lizards can now join mid-round again.' - - !!python/unicode 'rscadd': !!python/unicode 'Chemicals in bloodstream will transfer - with blood now, so don''t get drunk before your blood donation. Viruses and - antibodies transfer through blood too.' - - !!python/unicode 'bugfix': !!python/unicode 'Virology is working again.' + Spamcat: + - bugfix: Chemmaster now puts pills in pill bottles (if one is inserted). + - tweak: Stabbing someone with a syringe now deals 3 damage instead of 7 because + 7 is like, a crowbar punch. + - bugfix: Lizards can now join mid-round again. + - rscadd: Chemicals in bloodstream will transfer with blood now, so don't get drunk + before your blood donation. Viruses and antibodies transfer through blood too. + - bugfix: Virology is working again. 2013-03-27: - !!python/unicode 'Asanadas': - - !!python/unicode 'tweak': !!python/unicode 'The Null Rod has recovered its de-culting - ability, for balance reasons. Metagaming with it is a big no-no!' - - !!python/unicode 'rscadd': !!python/unicode 'Holy Water as a liquid is able to - de-cult. Less effective, but less bloody. May be changed over the course of - time for balance.' + Asanadas: + - tweak: The Null Rod has recovered its de-culting ability, for balance reasons. + Metagaming with it is a big no-no! + - rscadd: Holy Water as a liquid is able to de-cult. Less effective, but less bloody. + May be changed over the course of time for balance. 2013-04-04: - !!python/unicode 'SkyMarshal': - - !!python/unicode 'bugfix': !!python/unicode 'Fixed ZAS' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed Fire' - !!python/unicode 'Spamcat': - - !!python/unicode 'bugfix': !!python/unicode 'Blood type is now saved in character - creation menu, no need to edit it manually every round.' + SkyMarshal: + - bugfix: Fixed ZAS + - bugfix: Fixed Fire + Spamcat: + - bugfix: Blood type is now saved in character creation menu, no need to edit it + manually every round. 2013-04-09: - !!python/unicode 'SkyMarshal': - - !!python/unicode 'bugfix': !!python/unicode 'Fire Issues (Firedoors, Flamethrowers, - Incendiary Grenades) fixed.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed a bad line of code that was - preventing autoignition of flammable gas mixes.' - - !!python/unicode 'bugfix': !!python/unicode 'Volatile fuel is burned up after - a point.' - - !!python/unicode 'rscdel': !!python/unicode 'Partial-tile firedoors removed. This - is due to ZAS breaking when interacting with them.' + SkyMarshal: + - bugfix: Fire Issues (Firedoors, Flamethrowers, Incendiary Grenades) fixed. + - bugfix: Fixed a bad line of code that was preventing autoignition of flammable + gas mixes. + - bugfix: Volatile fuel is burned up after a point. + - rscdel: Partial-tile firedoors removed. This is due to ZAS breaking when interacting + with them. 2013-04-11: - !!python/unicode 'SkyMarshal': - - !!python/unicode 'experiment': !!python/unicode 'Fire has been reworked.' - - !!python/unicode 'experiment': !!python/unicode 'In-game variable editor is both - readded and expanded with fire controlling capability.' + SkyMarshal: + - experiment: Fire has been reworked. + - experiment: In-game variable editor is both readded and expanded with fire controlling + capability. 2013-04-17: - !!python/unicode 'SkyMarshal': - - !!python/unicode 'experiment': !!python/unicode 'ZAS is now more deadly, as per - decision by administrative team. May be tweaked, but currently AIRFLOW is the - biggest griefer.' - - !!python/unicode 'experiment': !!python/unicode 'World startup optimized, many - functions now delayed until a player joins the server. (Reduces server boot - time significantly)' - - !!python/unicode 'tweak': !!python/unicode 'Zones will now equalize air more rapidly.' - - !!python/unicode 'bugfix': !!python/unicode 'ZAS now respects active magboots - when airflow occurs.' - - !!python/unicode 'bugfix': !!python/unicode 'Airflow will no longer throw you - into doors and open them.' - - !!python/unicode 'bugfix': !!python/unicode 'Race condition in zone construction - has been fixed, so zones connect properly at round start.' - - !!python/unicode 'bugfix': !!python/unicode 'Plasma effects readded.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed runtime involving away mission.' + SkyMarshal: + - experiment: ZAS is now more deadly, as per decision by administrative team. May + be tweaked, but currently AIRFLOW is the biggest griefer. + - experiment: World startup optimized, many functions now delayed until a player + joins the server. (Reduces server boot time significantly) + - tweak: Zones will now equalize air more rapidly. + - bugfix: ZAS now respects active magboots when airflow occurs. + - bugfix: Airflow will no longer throw you into doors and open them. + - bugfix: Race condition in zone construction has been fixed, so zones connect properly + at round start. + - bugfix: Plasma effects readded. + - bugfix: Fixed runtime involving away mission. 2013-04-24: - !!python/unicode 'Jediluke69': - - !!python/unicode 'rscadd': !!python/unicode 'Added 5 new drinks (Kira Special, - Lemonade, Brown Star, Milkshakes, Rewriter)' - - !!python/unicode 'tweak': !!python/unicode 'Nanopaste now heals about half of - what it used to' - - !!python/unicode 'tweak': !!python/unicode 'Ballistic crates should now come with - shotguns loaded with actual shells no more beanbags' - - !!python/unicode 'bugfix': !!python/unicode 'Iced tea no longer makes a glass - of .what?' - !!python/unicode 'NerdyBoy1104': - - !!python/unicode 'rscadd': !!python/unicode 'New Botany additions: Rice and Plastellium. - New sheet material: Plastic.' - - !!python/unicode 'rscadd': !!python/unicode 'Plastellium is refined into plastic - by first grinding the produce to get plasticide. 20 plasticide + 10 polytrinic - acid makes 10 sheets of plastic which can be used to make crates, forks, spoons, - knives, ashtrays or plastic bags from.' - - !!python/unicode 'rscadd': !!python/unicode 'Rice seeds grows into rice stalks - that you grind to get rice. 10 Rice + 5 Water makes boiled rice, 10 rice + 5 - milk makes rice pudding, 10 rice + 5 universal enzyme (in beaker) makes Sake.' - !!python/unicode 'faux': - - !!python/unicode 'imageadd': !!python/unicode 'Mixed Wardrobe Closet now has colored - shoes and plaid skirts.' - - !!python/unicode 'imageadd': !!python/unicode 'Dress uniforms added to the Captain, - RD, and HoP wardrobe closets. A uniform jacket has also been added to the Captain''s - closet. HoS'' hat has been re-added to their closet. I do not love the CMO and - CE enough to give them anything.' - - !!python/unicode 'imageadd': !!python/unicode 'Atheletic closet now has five different - swimsuits *for the ladies* in them. If you are a guy, be prepared to be yelled - at if you run around like a moron in one of these. Same goes for ladies who - run around in shorts with their titties swaying in the space winds.' - - !!python/unicode 'imageadd': !!python/unicode 'A set of dispatcher uniforms will - spawn in the security closet. These are for playtesting the dispatcher role.' - - !!python/unicode 'imageadd': !!python/unicode 'New suit spawns in the laundry - room. It''s for geezer''s only. You''re welcome, Book.' - - !!python/unicode 'imageadd': !!python/unicode 'Nurse outfit variant, orderly uniform, - and first responder jacket will now spawn in the medical wardrobe closet.' - - !!python/unicode 'imageadd': !!python/unicode 'A white wedding dress will spawn - in the chaplain''s closet. There are also several dresses currently only adminspawnable. - Admins: Look either under "bride" or "dress." The bride one leads to the colored - wedding dresses, and there are some other kinds of dresses under dress.' - - !!python/unicode 'tweak': !!python/unicode 'No more luchador masks or boxing gloves - or boxing ring. You guys have a swimming pool now, dip in and enjoy it.' - - !!python/unicode 'tweak': !!python/unicode 'he meeting hall has been replaced - with an awkwardly placed security office meant for prisoner processing.' - - !!python/unicode 'tweak': !!python/unicode 'Added a couple more welding goggles - to engineering since you guys liked those a lot.' - - !!python/unicode 'imageadd': !!python/unicode 'Flasks spawn behind the bar. Only - three. Don''t fight over them. I don''t know how to add them to the bar vending - machine otherwise I would have done that instead. Detective, you have your own - flask in your office, it''s underneath the cigarettes on your desk.' - - !!python/unicode 'tweak': !!python/unicode 'Added two canes to the medical storage, - for people who have leg injuries and can''t walk good and stuff. I do not want - to see doctors pretending to be House. These are for patients. Do not make me - delete this addition and declare you guys not being able to have nice things.' - - !!python/unicode 'tweak': !!python/unicode 'Secondary entance to EVA now directly - leads into the medbay hardsuit section. Sorry for any inconviences this will - cause. The CMO can now fetch the hardsuits whenever they want.' - - !!python/unicode 'tweak': !!python/unicode 'Secondary security hardsuit has been - added to the armory. Security members please stop stealing engineer''s hardsuits - when you guys want to pair up for space travel.' - - !!python/unicode 'tweak': !!python/unicode 'Firelocks have been moved around in - the main hallways to form really ghetto versions of airlocks.' - - !!python/unicode 'tweak': !!python/unicode 'Violin spawns in theatre storage now. - I didn''t put the piano there though, that was someone else.' - - !!python/unicode 'tweak': !!python/unicode 'Psych office in medbay has been made - better looking.' + Jediluke69: + - rscadd: Added 5 new drinks (Kira Special, Lemonade, Brown Star, Milkshakes, Rewriter) + - tweak: Nanopaste now heals about half of what it used to + - tweak: Ballistic crates should now come with shotguns loaded with actual shells + no more beanbags + - bugfix: Iced tea no longer makes a glass of .what? + NerdyBoy1104: + - rscadd: 'New Botany additions: Rice and Plastellium. New sheet material: Plastic.' + - rscadd: Plastellium is refined into plastic by first grinding the produce to get + plasticide. 20 plasticide + 10 polytrinic acid makes 10 sheets of plastic which + can be used to make crates, forks, spoons, knives, ashtrays or plastic bags + from. + - rscadd: Rice seeds grows into rice stalks that you grind to get rice. 10 Rice + + 5 Water makes boiled rice, 10 rice + 5 milk makes rice pudding, 10 rice + + 5 universal enzyme (in beaker) makes Sake. + faux: + - imageadd: Mixed Wardrobe Closet now has colored shoes and plaid skirts. + - imageadd: Dress uniforms added to the Captain, RD, and HoP wardrobe closets. A + uniform jacket has also been added to the Captain's closet. HoS' hat has been + re-added to their closet. I do not love the CMO and CE enough to give them anything. + - imageadd: Atheletic closet now has five different swimsuits *for the ladies* in + them. If you are a guy, be prepared to be yelled at if you run around like a + moron in one of these. Same goes for ladies who run around in shorts with their + titties swaying in the space winds. + - imageadd: A set of dispatcher uniforms will spawn in the security closet. These + are for playtesting the dispatcher role. + - imageadd: New suit spawns in the laundry room. It's for geezer's only. You're + welcome, Book. + - imageadd: Nurse outfit variant, orderly uniform, and first responder jacket will + now spawn in the medical wardrobe closet. + - imageadd: 'A white wedding dress will spawn in the chaplain''s closet. There are + also several dresses currently only adminspawnable. Admins: Look either under + "bride" or "dress." The bride one leads to the colored wedding dresses, and + there are some other kinds of dresses under dress.' + - tweak: No more luchador masks or boxing gloves or boxing ring. You guys have a + swimming pool now, dip in and enjoy it. + - tweak: he meeting hall has been replaced with an awkwardly placed security office + meant for prisoner processing. + - tweak: Added a couple more welding goggles to engineering since you guys liked + those a lot. + - imageadd: Flasks spawn behind the bar. Only three. Don't fight over them. I don't + know how to add them to the bar vending machine otherwise I would have done + that instead. Detective, you have your own flask in your office, it's underneath + the cigarettes on your desk. + - tweak: Added two canes to the medical storage, for people who have leg injuries + and can't walk good and stuff. I do not want to see doctors pretending to be + House. These are for patients. Do not make me delete this addition and declare + you guys not being able to have nice things. + - tweak: Secondary entance to EVA now directly leads into the medbay hardsuit section. + Sorry for any inconviences this will cause. The CMO can now fetch the hardsuits + whenever they want. + - tweak: Secondary security hardsuit has been added to the armory. Security members + please stop stealing engineer's hardsuits when you guys want to pair up for + space travel. + - tweak: Firelocks have been moved around in the main hallways to form really ghetto + versions of airlocks. + - tweak: Violin spawns in theatre storage now. I didn't put the piano there though, + that was someone else. + - tweak: Psych office in medbay has been made better looking. 2013-05-14: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'experiment': !!python/unicode 'Depth scanners can now be used - to determine what material archaeological deposits are made of, meaning lab - analysis is no longer required.' - - !!python/unicode 'tweak': !!python/unicode 'Some useability issues with xenoarchaeology - tools have been resolved, and the transit pods cycle automatically now.' + Cael_Aislinn: + - experiment: Depth scanners can now be used to determine what material archaeological + deposits are made of, meaning lab analysis is no longer required. + - tweak: Some useability issues with xenoarchaeology tools have been resolved, and + the transit pods cycle automatically now. 2013-05-15: - !!python/unicode 'Spamcat': - - !!python/unicode 'rscadd': !!python/unicode 'Added telescopic - batons to HoS''s and captain''s lockers. These are quite robust and easily - concealable.' + Spamcat: + - rscadd: Added telescopic batons + to HoS's and captain's lockers. These are quite robust and easily concealable. 2013-05-21: - !!python/unicode 'SkyMarshal': - - !!python/unicode 'experiment': !!python/unicode 'ZAS will now speed air movement - into/out of a zone when unsimulated tiles (e.g. space) are involved, in relation - to the number of tiles.' - - !!python/unicode 'experiment': !!python/unicode 'Portable Canisters will now automatically - connect to any portable connecter beneath them on map load.' - - !!python/unicode 'bugfix': !!python/unicode 'Bug involving mis-mapped disposal - junction fixed' - - !!python/unicode 'bugfix': !!python/unicode 'Air alarms now work for atmos techs - (whoops!)' - - !!python/unicode 'bugfix': !!python/unicode 'The Master Controller now properly - stops atmos when it runtimes.' - - !!python/unicode 'bugfix': !!python/unicode 'Backpacks can no longer be contaminated' - - !!python/unicode 'tweak': !!python/unicode 'ZAS no longer logs air statistics.' - - !!python/unicode 'tweak': !!python/unicode 'ZAS now rebuilds as soon as it detects - a semi-complex change in geometry. (It was doing this already, but in a convoluted - way which was actually less efficient)' - - !!python/unicode 'tweak': !!python/unicode 'General code cleanup/commenting of - ZAS' - - !!python/unicode 'tweak': !!python/unicode 'Jungle now initializes after the random - Z-level loads and atmos initializes.' + SkyMarshal: + - experiment: ZAS will now speed air movement into/out of a zone when unsimulated + tiles (e.g. space) are involved, in relation to the number of tiles. + - experiment: Portable Canisters will now automatically connect to any portable + connecter beneath them on map load. + - bugfix: Bug involving mis-mapped disposal junction fixed + - bugfix: Air alarms now work for atmos techs (whoops!) + - bugfix: The Master Controller now properly stops atmos when it runtimes. + - bugfix: Backpacks can no longer be contaminated + - tweak: ZAS no longer logs air statistics. + - tweak: ZAS now rebuilds as soon as it detects a semi-complex change in geometry. (It + was doing this already, but in a convoluted way which was actually less efficient) + - tweak: General code cleanup/commenting of ZAS + - tweak: Jungle now initializes after the random Z-level loads and atmos initializes. 2013-05-25: - !!python/unicode 'Erthilo': - - !!python/unicode 'bugfix': !!python/unicode 'Fixes alien races appearing an unknown - when speaking their language.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixes alien races losing their language - when cloned.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixes UI getting randomly reset when - trying to change it in Genetics Scanners.' + Erthilo: + - bugfix: Fixes alien races appearing an unknown when speaking their language. + - bugfix: Fixes alien races losing their language when cloned. + - bugfix: Fixes UI getting randomly reset when trying to change it in Genetics Scanners. 2013-05-26: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Tentacles! Now clone damage will - make you horribly malformed like examine text says.' - !!python/unicode 'Meyar': - - !!python/unicode 'rscadd': !!python/unicode 'The syndicate shuttle now has a cycling - airlock during Nuke rounds.' - - !!python/unicode 'rscadd': !!python/unicode 'Restored the ability for the syndicate - Agent ID to change the name on the card (reforge it) more than once.' - - !!python/unicode 'rscadd': !!python/unicode 'ERT Radio now functional again.' - - !!python/unicode 'rscadd': !!python/unicode 'Research blast doors now actually - lock down the entirety of station-side Research. ' - - !!python/unicode 'rscadd': !!python/unicode 'Added lock down buttons to the wardens - office. ' - - !!python/unicode 'rscadd': !!python/unicode 'The randomized barsign has made a - return. ' - - !!python/unicode 'rscadd': !!python/unicode 'Syndicate Agent ID''s external airlock - access restored.' - !!python/unicode 'VitrescentTortoise': - - !!python/unicode 'rscadd': !!python/unicode 'Added a third option for not getting - any job preferences. It allows you to return to the lobby instead of joining.' + Chinsky: + - rscadd: Tentacles! Now clone damage will make you horribly malformed like examine + text says. + Meyar: + - rscadd: The syndicate shuttle now has a cycling airlock during Nuke rounds. + - rscadd: Restored the ability for the syndicate Agent ID to change the name on + the card (reforge it) more than once. + - rscadd: ERT Radio now functional again. + - rscadd: 'Research blast doors now actually lock down the entirety of station-side + Research. ' + - rscadd: 'Added lock down buttons to the wardens office. ' + - rscadd: 'The randomized barsign has made a return. ' + - rscadd: Syndicate Agent ID's external airlock access restored. + VitrescentTortoise: + - rscadd: Added a third option for not getting any job preferences. It allows you + to return to the lobby instead of joining. 2013-05-28: - !!python/unicode 'Erthilo': - - !!python/unicode 'bugfix': !!python/unicode 'Fixes everyone being able to understand - alien languages. HERE IS YOUR TOWER OF BABEL' - !!python/unicode 'VitrescentTortoise': - - !!python/unicode 'bugfix': !!python/unicode 'Wizard''s forcewall now works.' + Erthilo: + - bugfix: Fixes everyone being able to understand alien languages. HERE IS YOUR + TOWER OF BABEL + VitrescentTortoise: + - bugfix: Wizard's forcewall now works. 2013-05-30: - !!python/unicode 'Segrain': - - !!python/unicode 'bugfix': !!python/unicode 'Meteor showers actually spawn meteors - now.' - - !!python/unicode 'tweak': !!python/unicode 'Engineering tape fits into toolbelt - and can be placed on doors.' - - !!python/unicode 'rscadd': !!python/unicode 'Pill bottles can hold paper.' - !!python/unicode 'Spamcat': - - !!python/unicode 'tweak': !!python/unicode 'Pill bottle capacity increased to - 14 items.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed Lamarr (it now spawns properly)' - !!python/unicode 'proliberate': - - !!python/unicode 'rscadd': !!python/unicode 'Station time is now displayed in - the status tab for new players and AIs.' + Segrain: + - bugfix: Meteor showers actually spawn meteors now. + - tweak: Engineering tape fits into toolbelt and can be placed on doors. + - rscadd: Pill bottles can hold paper. + Spamcat: + - tweak: Pill bottle capacity increased to 14 items. + - bugfix: Fixed Lamarr (it now spawns properly) + proliberate: + - rscadd: Station time is now displayed in the status tab for new players and AIs. 2013-05-31: - !!python/unicode 'Segrain': - - !!python/unicode 'bugfix': !!python/unicode 'Portable canisters now properly connect - to ports beneath them on map load.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed unfastening gas meters.' + Segrain: + - bugfix: Portable canisters now properly connect to ports beneath them on map load. + - bugfix: Fixed unfastening gas meters. 2013-06-01: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Bloody footprints! Now stepping in - the puddle will dirty your shoes/feet and make you leave bloody footprints for - a bit.' - - !!python/unicode 'rscadd': !!python/unicode 'Blood now dries up after some time. - Puddles take ~30 minutes, small things 5 minutes.' - - !!python/unicode 'bugfix': !!python/unicode 'Untreated wounds now heal. No more - toe stubs spamming you with pain messages for the rest of the shift.' - - !!python/unicode 'experiment': !!python/unicode 'On the other side, everything - is healed slowly. Maximum you cna squeeze out of first aid is 0.5 health per - tick per organ. Lying down makes it faster too, by 1.5x factor.' - - !!python/unicode 'rscadd': !!python/unicode 'Lids! Click beaker/bottle in hand - to put them on/off. Prevent spilling' - - !!python/unicode 'rscadd': !!python/unicode 'Added ''hailer'' to security lockers. - If used in hand, says "Halt! Security!". For those who can''t run and type.' + Chinsky: + - rscadd: Bloody footprints! Now stepping in the puddle will dirty your shoes/feet + and make you leave bloody footprints for a bit. + - rscadd: Blood now dries up after some time. Puddles take ~30 minutes, small things + 5 minutes. + - bugfix: Untreated wounds now heal. No more toe stubs spamming you with pain messages + for the rest of the shift. + - experiment: On the other side, everything is healed slowly. Maximum you cna squeeze + out of first aid is 0.5 health per tick per organ. Lying down makes it faster + too, by 1.5x factor. + - rscadd: Lids! Click beaker/bottle in hand to put them on/off. Prevent spilling + - rscadd: Added 'hailer' to security lockers. If used in hand, says "Halt! Security!". + For those who can't run and type. 2013-06-05: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Load bearing equipment - webbings - and vests for engineers and sec. Attach to jumpsuit, use ''Look in storage'' - verb (object tab) to open.' - !!python/unicode 'Segrain': - - !!python/unicode 'rscadd': !!python/unicode 'Exosuits now can open firelocks by - walking into them.' + Chinsky: + - rscadd: Load bearing equipment - webbings and vests for engineers and sec. Attach + to jumpsuit, use 'Look in storage' verb (object tab) to open. + Segrain: + - rscadd: Exosuits now can open firelocks by walking into them. 2013-06-06: - !!python/unicode 'Asanadas': - - !!python/unicode 'rscadd': !!python/unicode 'Added a whimsical suit to the head - of personnel''s secret clothing locker.' - !!python/unicode 'Meyar': - - !!python/unicode 'bugfix': !!python/unicode 'Disposal''s mail routing fixed. Missing - pipes replaced.' - - !!python/unicode 'bugfix': !!python/unicode 'Chemistry is once again a part of - the disposals delivery circuit. ' - - !!python/unicode 'bugfix': !!python/unicode 'Added missing sorting junctions to - Security and HoS office.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed a duplicate sorting junction.' + Asanadas: + - rscadd: Added a whimsical suit to the head of personnel's secret clothing locker. + Meyar: + - bugfix: Disposal's mail routing fixed. Missing pipes replaced. + - bugfix: 'Chemistry is once again a part of the disposals delivery circuit. ' + - bugfix: Added missing sorting junctions to Security and HoS office. + - bugfix: Fixed a duplicate sorting junction. 2013-06-09: - !!python/unicode 'Segrain': - - !!python/unicode 'bugfix': !!python/unicode 'Emagged supply console can order - SpecOp crates again.' + Segrain: + - bugfix: Emagged supply console can order SpecOp crates again. 2013-06-11: - !!python/unicode 'Meyar': - - !!python/unicode 'bugfix': !!python/unicode 'Fixes a security door with a firedoor - ontop of it.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed a typo relating to the admin - Select Equipment Verb. (It''s RESPONSE team not RESCUE team)' - - !!python/unicode 'rscadd': !!python/unicode 'ERT are now automated, from their - spawn to their shuttle. Admin intervention no longer required! (Getting to the - mechs still requires admin permission generally)' - - !!python/unicode 'rscadd': !!python/unicode 'Added flashlights to compensate for - the weakened PDA lights' - - !!python/unicode 'tweak': !!python/unicode 'ERT Uniforms updated to be in line - with Centcom uniforms. No more turtlenecks, no sir. ' + Meyar: + - bugfix: Fixes a security door with a firedoor ontop of it. + - bugfix: Fixed a typo relating to the admin Select Equipment Verb. (It's RESPONSE + team not RESCUE team) + - rscadd: ERT are now automated, from their spawn to their shuttle. Admin intervention + no longer required! (Getting to the mechs still requires admin permission generally) + - rscadd: Added flashlights to compensate for the weakened PDA lights + - tweak: 'ERT Uniforms updated to be in line with Centcom uniforms. No more turtlenecks, + no sir. ' 2013-06-12: - !!python/unicode 'Zuhayr': - - !!python/unicode 'rscadd': !!python/unicode 'Added pneumatic cannon and harpoons.' - - !!python/unicode 'experiment': !!python/unicode 'Added embedded projectiles. Bullets - and thrown weapons may stick in targets. Throwing them by hand won''t make them - stick, firing them from a cannon might. Implant removal surgery will get rid - of shrapnel and stuck items.' + Zuhayr: + - rscadd: Added pneumatic cannon and harpoons. + - experiment: Added embedded projectiles. Bullets and thrown weapons may stick in + targets. Throwing them by hand won't make them stick, firing them from a cannon + might. Implant removal surgery will get rid of shrapnel and stuck items. 2013-06-13: - !!python/unicode 'Kilakk': - - !!python/unicode 'rscadd': !!python/unicode 'Added the Xenobiologist job. Has - access to the research hallway and to xenobiology.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed Xenobiology access from Scientists.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed the Xenobiologist alternate - title from Scientists.' - - !!python/unicode 'rscadd': !!python/unicode 'Added "Xenoarchaeology" to the RD, - Scientists, and to the ID computer.' - - !!python/unicode 'tweak': !!python/unicode 'Changed the Research Outpost doors - to use "Xenoarchaeology" access.' + Kilakk: + - rscadd: Added the Xenobiologist job. Has access to the research hallway and to + xenobiology. + - rscdel: Removed Xenobiology access from Scientists. + - rscdel: Removed the Xenobiologist alternate title from Scientists. + - rscadd: Added "Xenoarchaeology" to the RD, Scientists, and to the ID computer. + - tweak: Changed the Research Outpost doors to use "Xenoarchaeology" access. 2013-06-18: - !!python/unicode 'Segrain': - - !!python/unicode 'bugfix': !!python/unicode 'Fixed some bugs in windoor construction.' - - !!python/unicode 'tweak': !!python/unicode 'Secure windoors are made with rods - again.' - - !!python/unicode 'rscadd': !!python/unicode 'Windoors drop their electronics when - broken. Emagged windoors can have theirs removed by crowbar.' - - !!python/unicode 'rscadd': !!python/unicode 'Airlock electronics can be configured - to make door open for any single access on it instead of all of them.' - - !!python/unicode 'rscadd': !!python/unicode 'Cyborgs can preview their icons before - choosing.' + Segrain: + - bugfix: Fixed some bugs in windoor construction. + - tweak: Secure windoors are made with rods again. + - rscadd: Windoors drop their electronics when broken. Emagged windoors can have + theirs removed by crowbar. + - rscadd: Airlock electronics can be configured to make door open for any single + access on it instead of all of them. + - rscadd: Cyborgs can preview their icons before choosing. 2013-06-21: - !!python/unicode 'Jupotter': - - !!python/unicode 'bugfix': !!python/unicode 'Fix the robotiscist preview in the - char setupe screen' + Jupotter: + - bugfix: Fix the robotiscist preview in the char setupe screen 2013-06-22: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'tweak': !!python/unicode 'The xenoarchaeology depth scanner - will now tell you what energy field is required to safely extract a find.' - - !!python/unicode 'tweak': !!python/unicode 'Excavation picks will now dig faster, - and xenoarchaeology as a whole should be easier to do.' + Cael_Aislinn: + - tweak: The xenoarchaeology depth scanner will now tell you what energy field is + required to safely extract a find. + - tweak: Excavation picks will now dig faster, and xenoarchaeology as a whole should + be easier to do. 2013-06-23: - !!python/unicode 'Segrain': - - !!python/unicode 'rscadd': !!python/unicode 'Airlocks of various models can be - constructed again.' - !!python/unicode 'faux': - - !!python/unicode 'experiment': !!python/unicode 'There has been a complete medbay - renovation spearheaded by Vetinarix. http://baystation12.net/forums/viewtopic.php?f=20&t;=7847 - <-- Please put any commentary good or bad, here.' - - !!python/unicode 'tweak': !!python/unicode 'Some maintenance doors within RnD - and Medbay have had their accesses changed. Maintenance doors in the joint areas - (leading to the research shuttle, virology, and xenobiology) are now zero access. - Which means anyone in those joints can enter the maintenance tunnels. This was - done to add additional evacuation locations during radiation storms. Additional - maintenance doors were added to the tunnels in these areas to prevent docs and - scientists from running about.' - - !!python/unicode 'tweak': !!python/unicode 'Starboard emergency storage isn''t - gone now, it''s simply located in the escape wing.' - - !!python/unicode 'experiment': !!python/unicode 'An engineering training room - has been added to engineering. This location was previously where surgery was - located. If you are new to engineering or need to brush up on your skills, please - use this area for testing.' + Segrain: + - rscadd: Airlocks of various models can be constructed again. + faux: + - experiment: There has been a complete medbay renovation spearheaded by Vetinarix. + http://baystation12.net/forums/viewtopic.php?f=20&t;=7847 <-- Please + put any commentary good or bad, here. + - tweak: Some maintenance doors within RnD and Medbay have had their accesses changed. + Maintenance doors in the joint areas (leading to the research shuttle, virology, + and xenobiology) are now zero access. Which means anyone in those joints can + enter the maintenance tunnels. This was done to add additional evacuation locations + during radiation storms. Additional maintenance doors were added to the tunnels + in these areas to prevent docs and scientists from running about. + - tweak: Starboard emergency storage isn't gone now, it's simply located in the + escape wing. + - experiment: An engineering training room has been added to engineering. This location + was previously where surgery was located. If you are new to engineering or need + to brush up on your skills, please use this area for testing. 2013-06-26: - !!python/unicode 'Segrain': - - !!python/unicode 'bugfix': !!python/unicode 'Autopsy scanner properly displays - time of wound infliction and death.' - - !!python/unicode 'bugfix': !!python/unicode 'Autopsy scanner properly displays - wounds by projectile weapons.' - !!python/unicode 'Whitellama': - - !!python/unicode 'bugfix': !!python/unicode 'One-antag rounds (like wizard/ninja) - no longer end automatically upon death' - - !!python/unicode 'wip': !!python/unicode 'Space ninja has been implemented as - a voteable gamemode' - - !!python/unicode 'rscadd': !!python/unicode 'Space ninja spawn landmarks have - been implemented (but not yet placed on the map), still spawn at carps-pawns - instead. (The code will warn you about this and ask you to report it, it''s - a known issue.)' - - !!python/unicode 'rscadd': !!python/unicode 'Five new space ninja directives have - been added, old directives have been reworded to be less harsh' - - !!python/unicode 'wip': !!python/unicode 'Space ninjas have been given their own - list as antagonists, and are no longer bundled up with traitors' - - !!python/unicode 'bugfix': !!python/unicode 'Space ninjas with a "steal a functional - AI" objective will now succeed by downloading one into their suits' - - !!python/unicode 'tweak': !!python/unicode 'Space ninja suits'' exploding on death - has been nerfed, so as not to cause breaches' - - !!python/unicode 'rscadd': !!python/unicode 'A few space ninja titles/names have - been added and removed to be slightly more believable' - - !!python/unicode 'bugfix': !!python/unicode 'The antagonist selector no longer - chooses jobbanned players when it runs out of willing options' + Segrain: + - bugfix: Autopsy scanner properly displays time of wound infliction and death. + - bugfix: Autopsy scanner properly displays wounds by projectile weapons. + Whitellama: + - bugfix: One-antag rounds (like wizard/ninja) no longer end automatically upon + death + - wip: Space ninja has been implemented as a voteable gamemode + - rscadd: Space ninja spawn landmarks have been implemented (but not yet placed + on the map), still spawn at carps-pawns instead. (The code will warn you about + this and ask you to report it, it's a known issue.) + - rscadd: Five new space ninja directives have been added, old directives have been + reworded to be less harsh + - wip: Space ninjas have been given their own list as antagonists, and are no longer + bundled up with traitors + - bugfix: Space ninjas with a "steal a functional AI" objective will now succeed + by downloading one into their suits + - tweak: Space ninja suits' exploding on death has been nerfed, so as not to cause + breaches + - rscadd: A few space ninja titles/names have been added and removed to be slightly + more believable + - bugfix: The antagonist selector no longer chooses jobbanned players when it runs + out of willing options 2013-06-27: - !!python/unicode 'Segrain': - - !!python/unicode 'bugfix': !!python/unicode 'ID cards properly setup bloodtype, - DNA and fingerprints again.' + Segrain: + - bugfix: ID cards properly setup bloodtype, DNA and fingerprints again. 2013-06-28: - !!python/unicode 'Segrain': - - !!python/unicode 'rscadd': !!python/unicode 'AIs are now able to examine what - they see.' + Segrain: + - rscadd: AIs are now able to examine what they see. 2013-07-03: - !!python/unicode 'Segrain': - - !!python/unicode 'rscadd': !!python/unicode 'Security and medical cyborgs can - use their HUDs to access records.' + Segrain: + - rscadd: Security and medical cyborgs can use their HUDs to access records. 2013-07-05: - !!python/unicode 'Spamcat': - - !!python/unicode 'rscadd': !!python/unicode 'Pulse! Humans now have hearbeat rate, - which can be measured by right-clicking someone - Check pulse or by health analyzer. - Medical machinery also has heartbeat monitors. Certain meds and conditions can - influence it.' + Spamcat: + - rscadd: Pulse! Humans now have hearbeat rate, which can be measured by right-clicking + someone - Check pulse or by health analyzer. Medical machinery also has heartbeat + monitors. Certain meds and conditions can influence it. 2013-07-06: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Humans now can be infected with more - than one virus at once.' - - !!python/unicode 'rscadd': !!python/unicode 'All analyzed viruses are put into - virus DB. You can view it and edit their name and description on medical record - consoles.' - - !!python/unicode 'tweak': !!python/unicode 'Only known viruses (ones in DB) will - be detected by the machinery and HUDs. ' - - !!python/unicode 'rscadd': !!python/unicode 'Viruses cause fever, body temperature - rising the more stage is.' - - !!python/unicode 'bugfix': !!python/unicode 'Humans'' body temperature does not - drift towards room one unless there''s big difference in them.' - - !!python/unicode 'tweak': !!python/unicode 'Virus incubators now can transmit - viuses from dishes to blood sample.' - - !!python/unicode 'rscadd': !!python/unicode 'New machine - centrifuge. It can - isolate antibodies or viruses (spawning virus dish) from a blood sample in vials. - Accepts vials only.' - - !!python/unicode 'rscadd': !!python/unicode 'Fancy vial boxes in virology, one - of them is locked by ID with MD access.' - - !!python/unicode 'tweak': !!python/unicode 'Engineered viruses are now ariborne - too.' + Chinsky: + - rscadd: Humans now can be infected with more than one virus at once. + - rscadd: All analyzed viruses are put into virus DB. You can view it and edit their + name and description on medical record consoles. + - tweak: 'Only known viruses (ones in DB) will be detected by the machinery and + HUDs. ' + - rscadd: Viruses cause fever, body temperature rising the more stage is. + - bugfix: Humans' body temperature does not drift towards room one unless there's + big difference in them. + - tweak: Virus incubators now can transmit viuses from dishes to blood sample. + - rscadd: New machine - centrifuge. It can isolate antibodies or viruses (spawning + virus dish) from a blood sample in vials. Accepts vials only. + - rscadd: Fancy vial boxes in virology, one of them is locked by ID with MD access. + - tweak: Engineered viruses are now ariborne too. 2013-07-11: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Gun delays. All guns now have delays - between shots. Most have less than second, lasercannons and pulse rifles have - around 2 seconds delay. Automatics have zero, click-speed.' + Chinsky: + - rscadd: Gun delays. All guns now have delays between shots. Most have less than + second, lasercannons and pulse rifles have around 2 seconds delay. Automatics + have zero, click-speed. 2013-07-26: - !!python/unicode 'Kilakk': - - !!python/unicode 'bugfix': !!python/unicode 'Brig cell timers will no longer start - counting down automatically.' - - !!python/unicode 'tweak': !!python/unicode 'Separated the actual countdown timer - from the timer controls. Pressing "Set" while the timer is counting down will - reset the countdown timer to the time selected.' + Kilakk: + - bugfix: Brig cell timers will no longer start counting down automatically. + - tweak: Separated the actual countdown timer from the timer controls. Pressing + "Set" while the timer is counting down will reset the countdown timer to the + time selected. 2013-07-28: - !!python/unicode 'Segrain': - - !!python/unicode 'rscadd': !!python/unicode 'Camera console circuits can be adjusted - for different networks.' - - !!python/unicode 'rscadd': !!python/unicode 'Nuclear operatives and ERT members - have built-in cameras in their helmets. Activate helmet to initialize it.' + Segrain: + - rscadd: Camera console circuits can be adjusted for different networks. + - rscadd: Nuclear operatives and ERT members have built-in cameras in their helmets. + Activate helmet to initialize it. 2013-07-30: - !!python/unicode 'Erthilo': - - !!python/unicode 'bugfix': !!python/unicode 'EFTPOS and ATM machines should now - connect to databases.' - - !!python/unicode 'bugfix': !!python/unicode 'Gravitational Catapults can now be - removed from mechs.' - - !!python/unicode 'bugfix': !!python/unicode 'Ghost manifest rune paper naming - now works correctly.' - - !!python/unicode 'bugfix': !!python/unicode 'Fix for newscaster special characters. - Still not recommended.' - !!python/unicode 'Kilakk': - - !!python/unicode 'rscadd': !!python/unicode 'Added colored department radio channels.' + Erthilo: + - bugfix: EFTPOS and ATM machines should now connect to databases. + - bugfix: Gravitational Catapults can now be removed from mechs. + - bugfix: Ghost manifest rune paper naming now works correctly. + - bugfix: Fix for newscaster special characters. Still not recommended. + Kilakk: + - rscadd: Added colored department radio channels. 2013-08-01: - !!python/unicode 'Asanadas': - - !!python/unicode 'tweak': !!python/unicode 'The Null Rod has recovered its de-culting - ability, for balance reasons. Metagaming with it is a big no-no!' - - !!python/unicode 'rscadd': !!python/unicode 'Holy Water as a liquid is able to - de-cult. Less effective, but less bloody. May be changed over the course of - time for balance.' - !!python/unicode 'CIB': - - !!python/unicode 'bugfix': !!python/unicode 'Chilis and cold chilis no longer - kill in small amounts' - - !!python/unicode 'bugfix': !!python/unicode 'Chloral now again needs around 5 - units to start killing somebody' - !!python/unicode 'Cael Aislinn': - - !!python/unicode 'rscadd': !!python/unicode 'Security bots will now target hostile - mobs, and vice versa.' - - !!python/unicode 'tweak': !!python/unicode 'Carp should actually emigrate now, - instead of just immigrating then squatting around the outer hull.' - - !!python/unicode 'tweak': !!python/unicode 'Admins and moderators have been split - up into separate ''who'' verbs (adminwho and modwho respectively).' - !!python/unicode 'CaelAislinn': - - !!python/unicode 'rscadd': !!python/unicode 'Re-added old ion storm laws, re-added - grid check event.' - - !!python/unicode 'rscadd': !!python/unicode 'Added Rogue Drone and Vermin Infestation - random events.' - - !!python/unicode 'rscadd': !!python/unicode 'Added/fixed space vines random event.' - - !!python/unicode 'tweak': !!python/unicode 'Updates to the virus events.' - - !!python/unicode 'tweak': !!python/unicode 'Spider infestation and alien infestation - events turned off by default.' - - !!python/unicode 'tweak': !!python/unicode 'Soghun, taj and skrell all have unique - language text colours.' - - !!python/unicode 'tweak': !!python/unicode 'Moderators will no longer be listed - in adminwho, instead use modwho.' - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'tgs': !!python/unicode 'Updated server to tgstation r5200 (November - 26th, 2012), see https://code.google.com/p/tgstation13/source/list - for tg''s changelog.' - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Old new medical features:' - - !!python/unicode 'rscadd': !!python/unicode 'Autoinjectors! They come preloaded - with 5u of inapro, can be used instantly, and are one-use. You can replace chems - inside using a syringe. Box of them is added to Medicine closet and medical - supplies crate.' - - !!python/unicode 'rscadd': !!python/unicode 'Splints! Target broken liimb and - click on person to apply. Can be taken off in inventory menu, like handcuffs. - Splinted limbs have less negative effects.' - - !!python/unicode 'rscadd': !!python/unicode 'Advanced medikit! Red and mean, all - doctors spawn with one. Contains better stuff - advanced versions of bandaids - and aloe heal 12 damage on the first use.' - - !!python/unicode 'tweak': !!python/unicode 'Wounds with damage above 50 won''t - heal by themselves even if bandaged/salved. Would have to seek advanced medical - attention for those.' - !!python/unicode 'Erthilo': - - !!python/unicode 'bugfix': !!python/unicode 'Fixed SSD (logged-out) players not - staying asleep.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed set-pose verb and mice emotes - having extra periods.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed virus crate not appearing and - breaking supply shuttle.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed newcaster photos not being - censored.' - !!python/unicode 'Gamerofthegame': - - !!python/unicode 'rscadd': !!python/unicode 'Miscellaneous mapfixes.' - !!python/unicode 'GauHelldragon': - - !!python/unicode 'rscadd': !!python/unicode 'Servicebots now have RoboTray and - Printing Pen. Robotray can be used to pick up and drop food/drinks. Printing - pen can alternate between writing mode and rename paper mode by clicking it.' - - !!python/unicode 'rscadd': !!python/unicode 'Farmbots. A new type of robot that - weeds, waters and fertilizes. Use robot arm on water tank. Then use plant analyzer, - mini-hoe, bucket and finally proximity sensor.' - - !!python/unicode 'rscadd': !!python/unicode 'Chefs can clang their serving trays - with a rolling pin. Just like a riot shield!' - !!python/unicode 'Jediluke69': - - !!python/unicode 'rscadd': !!python/unicode 'Added 5 new drinks (Kira Special, - Lemonade, Brown Star, Milkshakes, Rewriter)' - - !!python/unicode 'tweak': !!python/unicode 'Nanopaste now heals about half of - what it used to' - - !!python/unicode 'tweak': !!python/unicode 'Ballistic crates should now come with - shotguns loaded with actual shells no more beanbags' - - !!python/unicode 'bugfix': !!python/unicode 'Iced tea no longer makes a glass - of .what?' - !!python/unicode 'Jupotter': - - !!python/unicode 'bugfix': !!python/unicode 'Fix the robotiscist preview in the - char setupe screen' - !!python/unicode 'Kilakk': - - !!python/unicode 'rscadd': !!python/unicode 'Added the Xenobiologist job. Has - access to the research hallway and to xenobiology.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed Xenobiology access from Scientists.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed the Xenobiologist alternate - title from Scientists.' - - !!python/unicode 'rscadd': !!python/unicode 'Added "Xenoarchaeology" to the RD, - Scientists, and to the ID computer.' - - !!python/unicode 'tweak': !!python/unicode 'Changed the Research Outpost doors - to use "Xenoarchaeology" access.' - !!python/unicode 'Meyar': - - !!python/unicode 'rscadd': !!python/unicode 'The syndicate shuttle now has a cycling - airlock during Nuke rounds.' - - !!python/unicode 'rscadd': !!python/unicode 'Restored the ability for the syndicate - Agent ID to change the name on the card (reforge it) more than once.' - - !!python/unicode 'rscadd': !!python/unicode 'ERT Radio now functional again.' - - !!python/unicode 'rscadd': !!python/unicode 'Research blast doors now actually - lock down the entirety of station-side Research. ' - - !!python/unicode 'rscadd': !!python/unicode 'Added lock down buttons to the wardens - office. ' - - !!python/unicode 'rscadd': !!python/unicode 'The randomized barsign has made a - return. ' - - !!python/unicode 'rscadd': !!python/unicode 'Syndicate Agent ID''s external airlock - access restored.' - !!python/unicode 'NerdyBoy1104': - - !!python/unicode 'rscadd': !!python/unicode 'New Botany additions: Rice and Plastellium. - New sheet material: Plastic.' - - !!python/unicode 'rscadd': !!python/unicode 'Plastellium is refined into plastic - by first grinding the produce to get plasticide. 20 plasticide + 10 polytrinic - acid makes 10 sheets of plastic which can be used to make crates, forks, spoons, - knives, ashtrays or plastic bags from.' - - !!python/unicode 'rscadd': !!python/unicode 'Rice seeds grows into rice stalks - that you grind to get rice. 10 Rice + 5 Water makes boiled rice, 10 rice + 5 - milk makes rice pudding, 10 rice + 5 universal enzyme (in beaker) makes Sake.' - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'You can now stab people with syringes - using the "harm" intent. This destroys the syringe and transfers a random percentage - of its contents into the target. Armor has a 50% chance of blocking the syringe.' - !!python/unicode 'Segrain': - - !!python/unicode 'bugfix': !!python/unicode 'Meteor showers actually spawn meteors - now.' - - !!python/unicode 'tweak': !!python/unicode 'Engineering tape fits into toolbelt - and can be placed on doors.' - - !!python/unicode 'rscadd': !!python/unicode 'Pill bottles can hold paper.' - !!python/unicode 'SkyMarshal': - - !!python/unicode 'bugfix': !!python/unicode 'Fixed ZAS' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed Fire' - !!python/unicode 'Spamcat': - - !!python/unicode 'rscadd': !!python/unicode 'Figured I should make one of these. - Syringestabbing now produces a broken syringe complete with fingerprints of - attacker and blood of a victim, so dispose your evidence carefully. Maximum - transfer amount per stab is lowered to 10.' - !!python/unicode 'VitrescentTortoise': - - !!python/unicode 'rscadd': !!python/unicode 'Added a third option for not getting - any job preferences. It allows you to return to the lobby instead of joining.' - !!python/unicode 'Whitellama': - - !!python/unicode 'bugfix': !!python/unicode 'One-antag rounds (like wizard/ninja) - no longer end automatically upon death' - - !!python/unicode 'wip': !!python/unicode 'Space ninja has been implemented as - a voteable gamemode' - - !!python/unicode 'rscadd': !!python/unicode 'Space ninja spawn landmarks have - been implemented (but not yet placed on the map), still spawn at carps-pawns - instead. (The code will warn you about this and ask you to report it, it''s - a known issue.)' - - !!python/unicode 'rscadd': !!python/unicode 'Five new space ninja directives have - been added, old directives have been reworded to be less harsh' - - !!python/unicode 'wip': !!python/unicode 'Space ninjas have been given their own - list as antagonists, and are no longer bundled up with traitors' - - !!python/unicode 'bugfix': !!python/unicode 'Space ninjas with a "steal a functional - AI" objective will now succeed by downloading one into their suits' - - !!python/unicode 'tweak': !!python/unicode 'Space ninja suits'' exploding on death - has been nerfed, so as not to cause breaches' - - !!python/unicode 'rscadd': !!python/unicode 'A few space ninja titles/names have - been added and removed to be slightly more believable' - - !!python/unicode 'bugfix': !!python/unicode 'The antagonist selector no longer - chooses jobbanned players when it runs out of willing options' - !!python/unicode 'Zuhayr': - - !!python/unicode 'rscadd': !!python/unicode 'Added pneumatic cannon and harpoons.' - - !!python/unicode 'experiment': !!python/unicode 'Added embedded projectiles. Bullets - and thrown weapons may stick in targets. Throwing them by hand won''t make them - stick, firing them from a cannon might. Implant removal surgery will get rid - of shrapnel and stuck items.' - !!python/unicode 'faux': - - !!python/unicode 'imageadd': !!python/unicode 'Mixed Wardrobe Closet now has colored - shoes and plaid skirts.' - - !!python/unicode 'imageadd': !!python/unicode 'Dress uniforms added to the Captain, - RD, and HoP wardrobe closets. A uniform jacket has also been added to the Captain''s - closet. HoS'' hat has been re-added to their closet. I do not love the CMO and - CE enough to give them anything.' - - !!python/unicode 'imageadd': !!python/unicode 'Atheletic closet now has five different - swimsuits *for the ladies* in them. If you are a guy, be prepared to be yelled - at if you run around like a moron in one of these. Same goes for ladies who - run around in shorts with their titties swaying in the space winds.' - - !!python/unicode 'imageadd': !!python/unicode 'A set of dispatcher uniforms will - spawn in the security closet. These are for playtesting the dispatcher role.' - - !!python/unicode 'imageadd': !!python/unicode 'New suit spawns in the laundry - room. It''s for geezer''s only. You''re welcome, Book.' - - !!python/unicode 'imageadd': !!python/unicode 'Nurse outfit variant, orderly uniform, - and first responder jacket will now spawn in the medical wardrobe closet.' - - !!python/unicode 'imageadd': !!python/unicode 'A white wedding dress will spawn - in the chaplain''s closet. There are also several dresses currently only adminspawnable. - Admins: Look either under "bride" or "dress." The bride one leads to the colored - wedding dresses, and there are some other kinds of dresses under dress.' - - !!python/unicode 'tweak': !!python/unicode 'No more luchador masks or boxing gloves - or boxing ring. You guys have a swimming pool now, dip in and enjoy it.' - - !!python/unicode 'tweak': !!python/unicode 'he meeting hall has been replaced - with an awkwardly placed security office meant for prisoner processing.' - - !!python/unicode 'tweak': !!python/unicode 'Added a couple more welding goggles - to engineering since you guys liked those a lot.' - - !!python/unicode 'imageadd': !!python/unicode 'Flasks spawn behind the bar. Only - three. Don''t fight over them. I don''t know how to add them to the bar vending - machine otherwise I would have done that instead. Detective, you have your own - flask in your office, it''s underneath the cigarettes on your desk.' - - !!python/unicode 'tweak': !!python/unicode 'Added two canes to the medical storage, - for people who have leg injuries and can''t walk good and stuff. I do not want - to see doctors pretending to be House. These are for patients. Do not make me - delete this addition and declare you guys not being able to have nice things.' - - !!python/unicode 'tweak': !!python/unicode 'Secondary entance to EVA now directly - leads into the medbay hardsuit section. Sorry for any inconviences this will - cause. The CMO can now fetch the hardsuits whenever they want.' - - !!python/unicode 'tweak': !!python/unicode 'Secondary security hardsuit has been - added to the armory. Security members please stop stealing engineer''s hardsuits - when you guys want to pair up for space travel.' - - !!python/unicode 'tweak': !!python/unicode 'Firelocks have been moved around in - the main hallways to form really ghetto versions of airlocks.' - - !!python/unicode 'tweak': !!python/unicode 'Violin spawns in theatre storage now. - I didn''t put the piano there though, that was someone else.' - - !!python/unicode 'tweak': !!python/unicode 'Psych office in medbay has been made - better looking.' - !!python/unicode 'proliberate': - - !!python/unicode 'rscadd': !!python/unicode 'Station time is now displayed in - the status tab for new players and AIs.' + Asanadas: + - tweak: The Null Rod has recovered its de-culting ability, for balance reasons. + Metagaming with it is a big no-no! + - rscadd: Holy Water as a liquid is able to de-cult. Less effective, but less bloody. + May be changed over the course of time for balance. + CIB: + - bugfix: Chilis and cold chilis no longer kill in small amounts + - bugfix: Chloral now again needs around 5 units to start killing somebody + Cael Aislinn: + - rscadd: Security bots will now target hostile mobs, and vice versa. + - tweak: Carp should actually emigrate now, instead of just immigrating then squatting + around the outer hull. + - tweak: Admins and moderators have been split up into separate 'who' verbs (adminwho + and modwho respectively). + CaelAislinn: + - rscadd: Re-added old ion storm laws, re-added grid check event. + - rscadd: Added Rogue Drone and Vermin Infestation random events. + - rscadd: Added/fixed space vines random event. + - tweak: Updates to the virus events. + - tweak: Spider infestation and alien infestation events turned off by default. + - tweak: Soghun, taj and skrell all have unique language text colours. + - tweak: Moderators will no longer be listed in adminwho, instead use modwho. + Cael_Aislinn: + - tgs: Updated server to tgstation r5200 (November 26th, 2012), see https://code.google.com/p/tgstation13/source/list + for tg's changelog. + Chinsky: + - rscadd: 'Old new medical features:' + - rscadd: Autoinjectors! They come preloaded with 5u of inapro, can be used instantly, + and are one-use. You can replace chems inside using a syringe. Box of them is + added to Medicine closet and medical supplies crate. + - rscadd: Splints! Target broken liimb and click on person to apply. Can be taken + off in inventory menu, like handcuffs. Splinted limbs have less negative effects. + - rscadd: Advanced medikit! Red and mean, all doctors spawn with one. Contains better + stuff - advanced versions of bandaids and aloe heal 12 damage on the first use. + - tweak: Wounds with damage above 50 won't heal by themselves even if bandaged/salved. + Would have to seek advanced medical attention for those. + Erthilo: + - bugfix: Fixed SSD (logged-out) players not staying asleep. + - bugfix: Fixed set-pose verb and mice emotes having extra periods. + - bugfix: Fixed virus crate not appearing and breaking supply shuttle. + - bugfix: Fixed newcaster photos not being censored. + Gamerofthegame: + - rscadd: Miscellaneous mapfixes. + GauHelldragon: + - rscadd: Servicebots now have RoboTray and Printing Pen. Robotray can be used to + pick up and drop food/drinks. Printing pen can alternate between writing mode + and rename paper mode by clicking it. + - rscadd: Farmbots. A new type of robot that weeds, waters and fertilizes. Use robot + arm on water tank. Then use plant analyzer, mini-hoe, bucket and finally proximity + sensor. + - rscadd: Chefs can clang their serving trays with a rolling pin. Just like a riot + shield! + Jediluke69: + - rscadd: Added 5 new drinks (Kira Special, Lemonade, Brown Star, Milkshakes, Rewriter) + - tweak: Nanopaste now heals about half of what it used to + - tweak: Ballistic crates should now come with shotguns loaded with actual shells + no more beanbags + - bugfix: Iced tea no longer makes a glass of .what? + Jupotter: + - bugfix: Fix the robotiscist preview in the char setupe screen + Kilakk: + - rscadd: Added the Xenobiologist job. Has access to the research hallway and to + xenobiology. + - rscdel: Removed Xenobiology access from Scientists. + - rscdel: Removed the Xenobiologist alternate title from Scientists. + - rscadd: Added "Xenoarchaeology" to the RD, Scientists, and to the ID computer. + - tweak: Changed the Research Outpost doors to use "Xenoarchaeology" access. + Meyar: + - rscadd: The syndicate shuttle now has a cycling airlock during Nuke rounds. + - rscadd: Restored the ability for the syndicate Agent ID to change the name on + the card (reforge it) more than once. + - rscadd: ERT Radio now functional again. + - rscadd: 'Research blast doors now actually lock down the entirety of station-side + Research. ' + - rscadd: 'Added lock down buttons to the wardens office. ' + - rscadd: 'The randomized barsign has made a return. ' + - rscadd: Syndicate Agent ID's external airlock access restored. + NerdyBoy1104: + - rscadd: 'New Botany additions: Rice and Plastellium. New sheet material: Plastic.' + - rscadd: Plastellium is refined into plastic by first grinding the produce to get + plasticide. 20 plasticide + 10 polytrinic acid makes 10 sheets of plastic which + can be used to make crates, forks, spoons, knives, ashtrays or plastic bags + from. + - rscadd: Rice seeds grows into rice stalks that you grind to get rice. 10 Rice + + 5 Water makes boiled rice, 10 rice + 5 milk makes rice pudding, 10 rice + + 5 universal enzyme (in beaker) makes Sake. + RavingManiac: + - rscadd: You can now stab people with syringes using the "harm" intent. This destroys + the syringe and transfers a random percentage of its contents into the target. + Armor has a 50% chance of blocking the syringe. + Segrain: + - bugfix: Meteor showers actually spawn meteors now. + - tweak: Engineering tape fits into toolbelt and can be placed on doors. + - rscadd: Pill bottles can hold paper. + SkyMarshal: + - bugfix: Fixed ZAS + - bugfix: Fixed Fire + Spamcat: + - rscadd: Figured I should make one of these. Syringestabbing now produces a broken + syringe complete with fingerprints of attacker and blood of a victim, so dispose + your evidence carefully. Maximum transfer amount per stab is lowered to 10. + VitrescentTortoise: + - rscadd: Added a third option for not getting any job preferences. It allows you + to return to the lobby instead of joining. + Whitellama: + - bugfix: One-antag rounds (like wizard/ninja) no longer end automatically upon + death + - wip: Space ninja has been implemented as a voteable gamemode + - rscadd: Space ninja spawn landmarks have been implemented (but not yet placed + on the map), still spawn at carps-pawns instead. (The code will warn you about + this and ask you to report it, it's a known issue.) + - rscadd: Five new space ninja directives have been added, old directives have been + reworded to be less harsh + - wip: Space ninjas have been given their own list as antagonists, and are no longer + bundled up with traitors + - bugfix: Space ninjas with a "steal a functional AI" objective will now succeed + by downloading one into their suits + - tweak: Space ninja suits' exploding on death has been nerfed, so as not to cause + breaches + - rscadd: A few space ninja titles/names have been added and removed to be slightly + more believable + - bugfix: The antagonist selector no longer chooses jobbanned players when it runs + out of willing options + Zuhayr: + - rscadd: Added pneumatic cannon and harpoons. + - experiment: Added embedded projectiles. Bullets and thrown weapons may stick in + targets. Throwing them by hand won't make them stick, firing them from a cannon + might. Implant removal surgery will get rid of shrapnel and stuck items. + faux: + - imageadd: Mixed Wardrobe Closet now has colored shoes and plaid skirts. + - imageadd: Dress uniforms added to the Captain, RD, and HoP wardrobe closets. A + uniform jacket has also been added to the Captain's closet. HoS' hat has been + re-added to their closet. I do not love the CMO and CE enough to give them anything. + - imageadd: Atheletic closet now has five different swimsuits *for the ladies* in + them. If you are a guy, be prepared to be yelled at if you run around like a + moron in one of these. Same goes for ladies who run around in shorts with their + titties swaying in the space winds. + - imageadd: A set of dispatcher uniforms will spawn in the security closet. These + are for playtesting the dispatcher role. + - imageadd: New suit spawns in the laundry room. It's for geezer's only. You're + welcome, Book. + - imageadd: Nurse outfit variant, orderly uniform, and first responder jacket will + now spawn in the medical wardrobe closet. + - imageadd: 'A white wedding dress will spawn in the chaplain''s closet. There are + also several dresses currently only adminspawnable. Admins: Look either under + "bride" or "dress." The bride one leads to the colored wedding dresses, and + there are some other kinds of dresses under dress.' + - tweak: No more luchador masks or boxing gloves or boxing ring. You guys have a + swimming pool now, dip in and enjoy it. + - tweak: he meeting hall has been replaced with an awkwardly placed security office + meant for prisoner processing. + - tweak: Added a couple more welding goggles to engineering since you guys liked + those a lot. + - imageadd: Flasks spawn behind the bar. Only three. Don't fight over them. I don't + know how to add them to the bar vending machine otherwise I would have done + that instead. Detective, you have your own flask in your office, it's underneath + the cigarettes on your desk. + - tweak: Added two canes to the medical storage, for people who have leg injuries + and can't walk good and stuff. I do not want to see doctors pretending to be + House. These are for patients. Do not make me delete this addition and declare + you guys not being able to have nice things. + - tweak: Secondary entance to EVA now directly leads into the medbay hardsuit section. + Sorry for any inconviences this will cause. The CMO can now fetch the hardsuits + whenever they want. + - tweak: Secondary security hardsuit has been added to the armory. Security members + please stop stealing engineer's hardsuits when you guys want to pair up for + space travel. + - tweak: Firelocks have been moved around in the main hallways to form really ghetto + versions of airlocks. + - tweak: Violin spawns in theatre storage now. I didn't put the piano there though, + that was someone else. + - tweak: Psych office in medbay has been made better looking. + proliberate: + - rscadd: Station time is now displayed in the status tab for new players and AIs. 2013-08-04: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Health HUD indicator replaced with - Pain indicator. Now health indicator shows pain level instead of actual vitals - level. Some types of damage contribute more to pain, some less, usually feeling - worse than they really are.' + Chinsky: + - rscadd: Health HUD indicator replaced with Pain indicator. Now health indicator + shows pain level instead of actual vitals level. Some types of damage contribute + more to pain, some less, usually feeling worse than they really are. 2013-08-08: - !!python/unicode 'Erthilo': - - !!python/unicode 'bugfix': !!python/unicode 'Raise Dead rune now properly heals - and revives dead corpse.' - - !!python/unicode 'bugfix': !!python/unicode 'Admin-only rejuvenate verb now heals - all organs, limbs, and diseases.' - - !!python/unicode 'bugfix': !!python/unicode 'Cyborg sprites now correctly reset - with reset boards. This means cyborg appearances can now be changed without - admin intervention.' + Erthilo: + - bugfix: Raise Dead rune now properly heals and revives dead corpse. + - bugfix: Admin-only rejuvenate verb now heals all organs, limbs, and diseases. + - bugfix: Cyborg sprites now correctly reset with reset boards. This means cyborg + appearances can now be changed without admin intervention. 2013-09-18: - !!python/unicode 'Kilakk': - - !!python/unicode 'rscadd': !!python/unicode 'Fax machines! The Captain and IA - agents can use the fax machine to send properly formatted messages to Central - Command.' - - !!python/unicode 'imageadd': !!python/unicode 'Gave the fax machine a fancy animated - sprite. Thanks Cajoes!' + Kilakk: + - rscadd: Fax machines! The Captain and IA agents can use the fax machine to send + properly formatted messages to Central Command. + - imageadd: Gave the fax machine a fancy animated sprite. Thanks Cajoes! 2013-09-24: - !!python/unicode 'Snapshot': - - !!python/unicode 'rscdel': !!python/unicode 'Removed hidden vote counts.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed hiding of vote results.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed OOC muting during votes.' - - !!python/unicode 'rscadd': !!python/unicode 'Crew transfers are no longer callable - during Red and Delta alert.' - - !!python/unicode 'wip': !!python/unicode 'Started work on Auto transfer framework.' + Snapshot: + - rscdel: Removed hidden vote counts. + - rscdel: Removed hiding of vote results. + - rscdel: Removed OOC muting during votes. + - rscadd: Crew transfers are no longer callable during Red and Delta alert. + - wip: Started work on Auto transfer framework. 2013-10-06: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Return of dreaded side effects. They - now manifest well after their cause disappears, so curing them should be possible - without them reappearing immediately. They also lost last stage damaging effects.' + Chinsky: + - rscadd: Return of dreaded side effects. They now manifest well after their cause + disappears, so curing them should be possible without them reappearing immediately. + They also lost last stage damaging effects. 2013-10-29: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'rscadd': !!python/unicode 'Xenoarchaeology''s chemical analysis - and six analysis machines are gone, replaced by a single one which can be beaten - in a minigame.' - - !!python/unicode 'rscadd': !!python/unicode 'Sneaky traitors will find new challenges - to overcome at the research outpost, but may also find new opportunities (transit - tubes can now be traversed).' - - !!python/unicode 'rscadd': !!python/unicode 'Finding active alien machinery should - now be made significantly easier with the Alden-Saraspova counter.' + Cael_Aislinn: + - rscadd: Xenoarchaeology's chemical analysis and six analysis machines are gone, + replaced by a single one which can be beaten in a minigame. + - rscadd: Sneaky traitors will find new challenges to overcome at the research outpost, + but may also find new opportunities (transit tubes can now be traversed). + - rscadd: Finding active alien machinery should now be made significantly easier + with the Alden-Saraspova counter. 2013-11-01: - !!python/unicode 'Various': - - !!python/unicode 'rscadd': !!python/unicode 'Autovoting, Get off the station when - your 15 hour workweek is done, thanks unions!' - - !!python/unicode 'rscadd': !!python/unicode 'Some beach props that Chinsky finds - useless.' - - !!python/unicode 'wip': !!python/unicode 'Updated NanoUI' - - !!python/unicode 'rscadd': !!python/unicode 'Dialysis while in sleepers - removes - reagents from mobs, like the chemist, toss him in there!' - - !!python/unicode 'tweak': !!python/unicode 'Pipe Dispensers can now be ordered - by Cargo' - - !!python/unicode 'rscadd': !!python/unicode 'Fancy G-G-G-G-Ghosts!' + Various: + - rscadd: Autovoting, Get off the station when your 15 hour workweek is done, thanks + unions! + - rscadd: Some beach props that Chinsky finds useless. + - wip: Updated NanoUI + - rscadd: Dialysis while in sleepers - removes reagents from mobs, like the chemist, + toss him in there! + - tweak: Pipe Dispensers can now be ordered by Cargo + - rscadd: Fancy G-G-G-G-Ghosts! 2013-11-23: - !!python/unicode 'Ccomp5950': - - !!python/unicode 'bugfix': !!python/unicode 'Players are now no longer able to - commit suicide with a lasertag gun, and will feel silly for doing so.' - - !!python/unicode 'bugfix': !!python/unicode 'Ghosts hit with the cult book shall - now actually become visible.' - - !!python/unicode 'bugfix': !!python/unicode 'The powercells spawned with Exosuits - will now properly be named to not confuse bearded roboticists.' - - !!python/unicode 'bugfix': !!python/unicode 'Blindfolded players will now no longer - require eye surgery to repair their sight, removing the blindfold will be sufficient.' - - !!python/unicode 'rscadd': !!python/unicode 'Atmospheric Technicians will now - have access to Exterior airlocks.' + Ccomp5950: + - bugfix: Players are now no longer able to commit suicide with a lasertag gun, + and will feel silly for doing so. + - bugfix: Ghosts hit with the cult book shall now actually become visible. + - bugfix: The powercells spawned with Exosuits will now properly be named to not + confuse bearded roboticists. + - bugfix: Blindfolded players will now no longer require eye surgery to repair their + sight, removing the blindfold will be sufficient. + - rscadd: Atmospheric Technicians will now have access to Exterior airlocks. 2013-11-24: - !!python/unicode 'Yinadele': - - !!python/unicode 'experiment': !!python/unicode 'Supermatter engine added! Please - treat your new engine gently, and report any strangeness!' - - !!python/unicode 'tweak': !!python/unicode 'Rebalanced events so people don''t - explode into appendicitis or have their organs constantly explode.' - - !!python/unicode 'rscadd': !!python/unicode 'Vending machines have had bottled - water, iced tea, and grape soda added.' - - !!python/unicode 'rscadd': !!python/unicode 'Head reattachment surgery added! - Sew heads back on proper rather than monkey madness.' - - !!python/unicode 'rscadd': !!python/unicode 'Pain crit rebalanced - Added aim - variance depending on pain levels, nerfed blackscreen severely.' - - !!python/unicode 'rscadd': !!python/unicode 'Cyborg alt titles: Robot, and Android - added! These will make you spawn as a posibrained robot. Please enjoy!' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed the sprite on the modified - welding goggles, added a pair to the CE''s office where they''ll be used.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed atmos computers- They are once - again responsive!' - - !!python/unicode 'tweak': !!python/unicode 'Added in functionality proper for - explosive implants- You can now set their level of detonation, and their effects - are more responsively concrete depending on setting.' - - !!python/unicode 'rscadd': !!python/unicode 'Hemostats re-added to autolathe!' - - !!python/unicode 'rscadd': !!python/unicode 'Added two manuals on atmosia and - EVA, by MagmaRam! Found in engineering and the engineering bookcase.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed areas in medbay to have fully - functional APC sectors.' - - !!python/unicode 'rscadd': !!python/unicode 'Girders are now lasable.' - - !!python/unicode 'experiment': !!python/unicode 'Please wait warmly, new features - planned for next merge!' + Yinadele: + - experiment: Supermatter engine added! Please treat your new engine gently, and + report any strangeness! + - tweak: Rebalanced events so people don't explode into appendicitis or have their + organs constantly explode. + - rscadd: Vending machines have had bottled water, iced tea, and grape soda added. + - rscadd: Head reattachment surgery added! Sew heads back on proper rather than + monkey madness. + - rscadd: Pain crit rebalanced - Added aim variance depending on pain levels, nerfed + blackscreen severely. + - rscadd: 'Cyborg alt titles: Robot, and Android added! These will make you spawn + as a posibrained robot. Please enjoy!' + - bugfix: Fixed the sprite on the modified welding goggles, added a pair to the + CE's office where they'll be used. + - bugfix: Fixed atmos computers- They are once again responsive! + - tweak: Added in functionality proper for explosive implants- You can now set their + level of detonation, and their effects are more responsively concrete depending + on setting. + - rscadd: Hemostats re-added to autolathe! + - rscadd: Added two manuals on atmosia and EVA, by MagmaRam! Found in engineering + and the engineering bookcase. + - bugfix: Fixed areas in medbay to have fully functional APC sectors. + - rscadd: Girders are now lasable. + - experiment: Please wait warmly, new features planned for next merge! 2013-12-01: - !!python/unicode 'Various Developers banged their keyboards together:': - - !!python/unicode 'rscadd': !!python/unicode 'New Engine, the supermatter, figure - out what a cooling loop is, or don''t and blow up engineering!' - - !!python/unicode 'rscadd': !!python/unicode 'Each department will have it''s own - fax, make a copy of your butt and fax it to the admins!' - - !!python/unicode 'rscadd': !!python/unicode 'Booze and soda dispensers, they are - like chemmasters, only with booze and soda!' - - !!python/unicode 'rscadd': !!python/unicode 'Bluespace and Cryostasis beakers, - how do they work? Fuggin bluespace how do they work?' - - !!python/unicode 'rscadd': !!python/unicode 'You can now shove things into vending - machines, impress your friends on how things magically disappear out of your - hands into the machine!' - - !!python/unicode 'rscadd': !!python/unicode 'Robots and Androids (And gynoids - too!) can now use custom job titles' - - !!python/unicode 'bugfix': !!python/unicode 'Various bugfixes' + 'Various Developers banged their keyboards together:': + - rscadd: New Engine, the supermatter, figure out what a cooling loop is, or don't + and blow up engineering! + - rscadd: Each department will have it's own fax, make a copy of your butt and fax + it to the admins! + - rscadd: Booze and soda dispensers, they are like chemmasters, only with booze + and soda! + - rscadd: Bluespace and Cryostasis beakers, how do they work? Fuggin bluespace + how do they work? + - rscadd: You can now shove things into vending machines, impress your friends on + how things magically disappear out of your hands into the machine! + - rscadd: Robots and Androids (And gynoids too!) can now use custom job titles + - bugfix: Various bugfixes 2013-12-18: - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'Mousetraps can now be "hidden" through - the right-click menu. This makes them go under tables, clutter and the like. - The filthy rodents will never see it coming!' - - !!python/unicode 'tweak': !!python/unicode 'Monkeys will no longer move randomly - while being pulled.' + RavingManiac: + - rscadd: Mousetraps can now be "hidden" through the right-click menu. This makes + them go under tables, clutter and the like. The filthy rodents will never see + it coming! + - tweak: Monkeys will no longer move randomly while being pulled. 2014-01-01: - !!python/unicode 'Various': - - !!python/unicode 'rscadd': !!python/unicode 'AntagHUD and MedicalHUD for ghosts, - see who the baddies are, check for new configuration options.' - - !!python/unicode 'rscadd': !!python/unicode 'Ghosts will now have bold text if - they are in the same room as the person making conversations easier to follow.' - - !!python/unicode 'rscadd': !!python/unicode 'New hairstyles! Now you can use - something other then hotpink floor length braid.' - - !!python/unicode 'wip': !!python/unicode 'DNA rework, tell us how you were cloned - and became albino!' - - !!python/unicode 'rscadd': !!python/unicode 'Dirty floors, so now you know exactly - how lazy the janitors are!' - - !!python/unicode 'rscadd': !!python/unicode 'A new UI system, feel free to color - it yourself, don''t set it to completely clear or you will have a bad time.' - - !!python/unicode 'rscadd': !!python/unicode 'Cryogenic storage, for all your SSD - needs.' - - !!python/unicode 'rscadd': !!python/unicode 'New hardsuits for those syndicate - tajaran' + Various: + - rscadd: AntagHUD and MedicalHUD for ghosts, see who the baddies are, check for + new configuration options. + - rscadd: Ghosts will now have bold text if they are in the same room as the person + making conversations easier to follow. + - rscadd: New hairstyles! Now you can use something other then hotpink floor length + braid. + - wip: DNA rework, tell us how you were cloned and became albino! + - rscadd: Dirty floors, so now you know exactly how lazy the janitors are! + - rscadd: A new UI system, feel free to color it yourself, don't set it to completely + clear or you will have a bad time. + - rscadd: Cryogenic storage, for all your SSD needs. + - rscadd: New hardsuits for those syndicate tajaran 2014-02-01: - !!python/unicode 'Various': - - !!python/unicode 'rscadd': !!python/unicode 'NanoUI for PDA' - - !!python/unicode 'rscadd': !!python/unicode 'Write in blood while a ghost in cult - rounds with enough cultists' - - !!python/unicode 'rscadd': !!python/unicode 'Cookies, absurd sandwiches, and even - cookable dioanae nymphs!' - - !!python/unicode 'rscadd': !!python/unicode 'A bunch of new guns and other weapons' - - !!python/unicode 'rscadd': !!python/unicode 'Species specific blood' + Various: + - rscadd: NanoUI for PDA + - rscadd: Write in blood while a ghost in cult rounds with enough cultists + - rscadd: Cookies, absurd sandwiches, and even cookable dioanae nymphs! + - rscadd: A bunch of new guns and other weapons + - rscadd: Species specific blood 2014-02-19: - !!python/unicode 'Aryn': - - !!python/unicode 'experiment': !!python/unicode 'New air model. Nothing should - change to a great degree, but temperature flow might be affected due to closed - connections not sticking around.' + Aryn: + - experiment: New air model. Nothing should change to a great degree, but temperature + flow might be affected due to closed connections not sticking around. 2014-03-01: - !!python/unicode 'Various': - - !!python/unicode 'rscadd': !!python/unicode 'Paint Mixing, red and blue makes - purple!' - - !!python/unicode 'rscadd': !!python/unicode 'New posters to tell you to respect - those darned cat people' - - !!python/unicode 'rscadd': !!python/unicode 'NanoUI for APC''s, Canisters, Tank - Transfer Valves and the heaters / coolers' - - !!python/unicode 'tweak': !!python/unicode 'PDA bombs are now less annoying, and - won''t always blow up / cause internal bleeding' - - !!python/unicode 'tweak': !!python/unicode 'Blob made less deadly' - - !!python/unicode 'rscadd': !!python/unicode 'Objectiveless Antags now a configuration - option, choose your own adventure!' - - !!python/unicode 'wip': !!python/unicode 'Engineering redesign, now with better - monitoring of the explodium supermatter!' - - !!python/unicode 'rscadd': !!python/unicode 'Security EOD' - - !!python/unicode 'rscadd': !!python/unicode 'New playable race, IPC''s, go beep - boop boop all over the station!' - - !!python/unicode 'rscadd': !!python/unicode 'Gamemode autovoting, now players - don''t have to call for gamemode votes, it''s automatic!' + Various: + - rscadd: Paint Mixing, red and blue makes purple! + - rscadd: New posters to tell you to respect those darned cat people + - rscadd: NanoUI for APC's, Canisters, Tank Transfer Valves and the heaters / coolers + - tweak: PDA bombs are now less annoying, and won't always blow up / cause internal + bleeding + - tweak: Blob made less deadly + - rscadd: Objectiveless Antags now a configuration option, choose your own adventure! + - wip: Engineering redesign, now with better monitoring of the explodium supermatter! + - rscadd: Security EOD + - rscadd: New playable race, IPC's, go beep boop boop all over the station! + - rscadd: Gamemode autovoting, now players don't have to call for gamemode votes, + it's automatic! 2014-03-05: - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'Smartfridges added to the bar, chemistry - and virology. No more clutter!' - - !!python/unicode 'rscadd': !!python/unicode 'A certain musical instrument has - returned to the bar.' - - !!python/unicode 'rscadd': !!python/unicode 'There is now a ten second delay between - ingesting a pill/donut/milkshake and regretting it.' + RavingManiac: + - rscadd: Smartfridges added to the bar, chemistry and virology. No more clutter! + - rscadd: A certain musical instrument has returned to the bar. + - rscadd: There is now a ten second delay between ingesting a pill/donut/milkshake + and regretting it. 2014-03-10: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Viruses now affect certain range - of species, different for each virus' - - !!python/unicode 'tweak': !!python/unicode 'Spaceacilline now prevents infection, - and has a small chance to cure viruses at Stage 1. It does not give them antibodies - though, so they can get sick again!' - - !!python/unicode 'tweak': !!python/unicode 'Biosuits and spacesuits now offer - more protection against viruses. Full biosuit competely prevents airborne infection, - when coupled with gloves they both protect quite well from contact ones' - - !!python/unicode 'rscadd': !!python/unicode 'Sneezing now spreads viruses in front - of mob. Sometimes he gets a warning beforehand though' + Chinsky: + - rscadd: Viruses now affect certain range of species, different for each virus + - tweak: Spaceacilline now prevents infection, and has a small chance to cure viruses + at Stage 1. It does not give them antibodies though, so they can get sick again! + - tweak: Biosuits and spacesuits now offer more protection against viruses. Full + biosuit competely prevents airborne infection, when coupled with gloves they + both protect quite well from contact ones + - rscadd: Sneezing now spreads viruses in front of mob. Sometimes he gets a warning + beforehand though 2014-03-30: - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'Inflatable walls and doors added. - Useful for sealing off hull breaches, but easily punctured by sharp objects - and Tajarans.' + RavingManiac: + - rscadd: Inflatable walls and doors added. Useful for sealing off hull breaches, + but easily punctured by sharp objects and Tajarans. 2014-04-06: - !!python/unicode 'RavingManiac': - - !!python/unicode 'tweak': !!python/unicode 'Tape recorders and station-bounced - radios now work inside containers and closets.' + RavingManiac: + - tweak: Tape recorders and station-bounced radios now work inside containers and + closets. 2014-04-11: - !!python/unicode 'Jarcolr': - - !!python/unicode 'rscadd': !!python/unicode 'You can now flip coins like a D2' - - !!python/unicode 'tweak': !!python/unicode 'Miscellaneous cargo crates got a tiny - buff, Standard Costume crate is now Costume Crate' - - !!python/unicode 'tweak': !!python/unicode 'Grammar patch,telekinesis/amputated - arm exploit fixes,more in the future' - - !!python/unicode 'tweak': !!python/unicode 'Grille kicking now does less damage' - - !!python/unicode 'tweak': !!python/unicode 'TELESCOPIC baton no longer knocks - anybody down,still got a lot of force though' - - !!python/unicode 'tweak': !!python/unicode 'Other small-ish changes and fixes - that aren''t worth mentioning' + Jarcolr: + - rscadd: You can now flip coins like a D2 + - tweak: Miscellaneous cargo crates got a tiny buff, Standard Costume crate is now + Costume Crate + - tweak: Grammar patch,telekinesis/amputated arm exploit fixes,more in the future + - tweak: Grille kicking now does less damage + - tweak: TELESCOPIC baton no longer knocks anybody down,still got a lot of force + though + - tweak: Other small-ish changes and fixes that aren't worth mentioning 2014-04-25: - !!python/unicode 'Various': - - !!python/unicode 'rscadd': !!python/unicode 'Overhauled saycode, you can now use - languages over the radio.' - - !!python/unicode 'rscadd': !!python/unicode 'Chamelon items beyond just the suit.' - - !!python/unicode 'rscadd': !!python/unicode 'NanoUI Virology' - - !!python/unicode 'rscadd': !!python/unicode '3D Sounds' - - !!python/unicode 'rscadd': !!python/unicode 'AI Channel color for when they want - to be all sneaky' - - !!python/unicode 'rscadd': !!python/unicode 'New inflatable walls and airlocks - for your breach sealing pleasure.' - - !!python/unicode 'rscadd': !!python/unicode 'Carbon Copy papers, so you can subject - everyone to your authority and paperwork, but mainly paperwork' - - !!python/unicode 'rscadd': !!python/unicode 'Undershirts and rolling down jumpsuits' - - !!python/unicode 'rscadd': !!python/unicode 'Insta-hit tasers, can be shot through - glass as well.' - - !!python/unicode 'rscadd': !!python/unicode 'Changeling balances, an emphasis - put more on stealth.' - - !!python/unicode 'rscdel': !!python/unicode 'Genetics disabled' - - !!python/unicode 'rscdel': !!python/unicode 'Telescience removed, might be added - again when we come up with a less math headache enducing version of it.' - - !!python/unicode 'bugfix': !!python/unicode 'Bugfixes galore!' + Various: + - rscadd: Overhauled saycode, you can now use languages over the radio. + - rscadd: Chamelon items beyond just the suit. + - rscadd: NanoUI Virology + - rscadd: 3D Sounds + - rscadd: AI Channel color for when they want to be all sneaky + - rscadd: New inflatable walls and airlocks for your breach sealing pleasure. + - rscadd: Carbon Copy papers, so you can subject everyone to your authority and + paperwork, but mainly paperwork + - rscadd: Undershirts and rolling down jumpsuits + - rscadd: Insta-hit tasers, can be shot through glass as well. + - rscadd: Changeling balances, an emphasis put more on stealth. + - rscdel: Genetics disabled + - rscdel: Telescience removed, might be added again when we come up with a less + math headache enducing version of it. + - bugfix: Bugfixes galore! 2014-04-29: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'rscadd': !!python/unicode 'Webbing vest storage can now be accessed - by clicking on the item in inventory' - - !!python/unicode 'rscadd': !!python/unicode 'Holsters can be accessed by clicking - on them in inventory' - - !!python/unicode 'rscadd': !!python/unicode 'Webbings and other suit attachments - are now visible on the icon in inventory' - - !!python/unicode 'tweak': !!python/unicode 'Removing jumpsuits now requires drag - and drop to prevent accidental undressing' - - !!python/unicode 'rscadd': !!python/unicode 'Added an action icon for magboots - that can be used to toggle them similar to flashlights' - - !!python/unicode 'rscadd': !!python/unicode 'Fuel tanks now spill fuel when wrenched - open' + HarpyEagle: + - rscadd: Webbing vest storage can now be accessed by clicking on the item in inventory + - rscadd: Holsters can be accessed by clicking on them in inventory + - rscadd: Webbings and other suit attachments are now visible on the icon in inventory + - tweak: Removing jumpsuits now requires drag and drop to prevent accidental undressing + - rscadd: Added an action icon for magboots that can be used to toggle them similar + to flashlights + - rscadd: Fuel tanks now spill fuel when wrenched open 2014-05-03: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'rscadd': !!python/unicode "Coming out of nowhere the past few\ - \ months, the Garland Corporation has made headlines with a new prehistoric\ - \ theme park delighting travellers with species thought extinct. Now available\ - \ for research stations everywhere is the technology that made it all possible!\ - \ Features include:
    \n\t\t\t- 13 discoverable prehistoric species to clone\ - \ from fossils (including 5 brand new ones).
    \n\t\t\t- 11 discoverable prehistoric\ - \ plants to clone from fossils (including 9 brand new ones).
    \n\t\t\t- New\ - \ minigame that involves correctly ordering the genomes inside each genetic\ - \ sequence to unlock an animal/plant.
    \n\t\t\t- Some prehistoric animals\ - \ and plants may seem strangely familiar... while others may bring more than\ - \ the erstwhile scientist bargains for.
    \n




    " + Cael_Aislinn: + - rscadd: "Coming out of nowhere the past few months, the Garland Corporation has\ + \ made headlines with a new prehistoric theme park delighting travellers with\ + \ species thought extinct. Now available for research stations everywhere is\ + \ the technology that made it all possible! Features include:
    \n\t\t\t-\ + \ 13 discoverable prehistoric species to clone from fossils (including 5 brand\ + \ new ones).
    \n\t\t\t- 11 discoverable prehistoric plants to clone from fossils\ + \ (including 9 brand new ones).
    \n\t\t\t- New minigame that involves correctly\ + \ ordering the genomes inside each genetic sequence to unlock an animal/plant.
    \n\ + \t\t\t- Some prehistoric animals and plants may seem strangely familiar... while\ + \ others may bring more than the erstwhile scientist bargains for.
    \n




    " 2014-05-06: - !!python/unicode 'Hubble': - - !!python/unicode 'rscadd': !!python/unicode 'Clip papers together by hitting a - paper with a paper or photo' - - !!python/unicode 'imageadd': !!python/unicode 'Adds icons for copied stamps' + Hubble: + - rscadd: Clip papers together by hitting a paper with a paper or photo + - imageadd: Adds icons for copied stamps 2014-05-16: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'rscadd': !!python/unicode 'Silicon mob types (AI, cyborgs, PAI) - can now speak certain species languages depending on type and module' - - !!python/unicode 'rscadd': !!python/unicode 'Languages can now be whispered when - using the language code with either the whisper verb or the whisper speech code' + HarpyEagle: + - rscadd: Silicon mob types (AI, cyborgs, PAI) can now speak certain species languages + depending on type and module + - rscadd: Languages can now be whispered when using the language code with either + the whisper verb or the whisper speech code 2014-05-23: - !!python/unicode 'Hubble': - - !!python/unicode 'rscadd': !!python/unicode 'Personal lockers are now resettable' - - !!python/unicode 'rscadd': !!python/unicode 'Take off people''s accessories or - change their sensors in the drag and drop-interface' - - !!python/unicode 'rscadd': !!python/unicode 'Merge paper bundles by hitting one - with another' - - !!python/unicode 'tweak': !!python/unicode 'Line breaks in Security, Medical and - Employment Records' - - !!python/unicode 'tweak': !!python/unicode 'Record printouts will have names on - it' - - !!python/unicode 'tweak': !!python/unicode 'Set other people''s internals in belt - and suit storage slots' - - !!python/unicode 'bugfix': !!python/unicode 'No longer changing suit sensors while - cuffed' - - !!python/unicode 'bugfix': !!python/unicode 'No longer emptying other people''s - pockets when they are not full yet' + Hubble: + - rscadd: Personal lockers are now resettable + - rscadd: Take off people's accessories or change their sensors in the drag and + drop-interface + - rscadd: Merge paper bundles by hitting one with another + - tweak: Line breaks in Security, Medical and Employment Records + - tweak: Record printouts will have names on it + - tweak: Set other people's internals in belt and suit storage slots + - bugfix: No longer changing suit sensors while cuffed + - bugfix: No longer emptying other people's pockets when they are not full yet 2014-05-28: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Adds few new paperBBcode tags, to - make up for HTML removal.' - - !!python/unicode 'rscadd': !!python/unicode '[logo] tag draws NT logo image (one - from wiki).' - - !!python/unicode 'rscadd': !!python/unicode '[table] [/table] tags mark borders - of tables. [grid] [/grid] are borderless tables, useful of making layouts. Inside - tables following tags are used: [row] marks beginning of new table row, [cell] - - beginning of new table cell.' + Chinsky: + - rscadd: Adds few new paperBBcode tags, to make up for HTML removal. + - rscadd: '[logo] tag draws NT logo image (one from wiki).' + - rscadd: '[table] [/table] tags mark borders of tables. [grid] [/grid] are borderless + tables, useful of making layouts. Inside tables following tags are used: [row] + marks beginning of new table row, [cell] - beginning of new table cell.' 2014-05-31: - !!python/unicode 'Jarcolr': - - !!python/unicode 'rscadd': !!python/unicode '21 New cargo crates, go check them - out!' - - !!python/unicode 'rscadd': !!python/unicode 'Peanuts have now been added, food - items are now being developed.' - - !!python/unicode 'rscadd': !!python/unicode '2 new cargo groups, Miscellaneous - and Supply.' - - !!python/unicode 'rscadd': !!python/unicode 'Sugarcane seeds can now be gotten - from the seed dispenser.' - - !!python/unicode 'rscadd': !!python/unicode '5 new satchels when selecting "satchel" - for RD, scientist, botanist, virologist, geneticist (disabled) and chemist.' - - !!python/unicode 'rscadd': !!python/unicode 'Clicking on a player with a paper/book - when you have the eyes selected shows them the book/paper forcefully.' + Jarcolr: + - rscadd: 21 New cargo crates, go check them out! + - rscadd: Peanuts have now been added, food items are now being developed. + - rscadd: 2 new cargo groups, Miscellaneous and Supply. + - rscadd: Sugarcane seeds can now be gotten from the seed dispenser. + - rscadd: 5 new satchels when selecting "satchel" for RD, scientist, botanist, virologist, + geneticist (disabled) and chemist. + - rscadd: Clicking on a player with a paper/book when you have the eyes selected + shows them the book/paper forcefully. 2014-06-03: - !!python/unicode 'Hubblenaut': - - !!python/unicode 'rscadd': !!python/unicode 'Added wheelchairs' - - !!python/unicode 'tweak': !!python/unicode 'Replaced stool in Medical Examination - with wheelchair' - - !!python/unicode 'tweak': !!python/unicode 'Using a fire-extinguisher to propel - you on a chair can have consequences (drive into walls and people, do it!)' + Hubblenaut: + - rscadd: Added wheelchairs + - tweak: Replaced stool in Medical Examination with wheelchair + - tweak: Using a fire-extinguisher to propel you on a chair can have consequences + (drive into walls and people, do it!) 2014-06-13: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'rscadd': !!python/unicode 'Added docking ports for shuttles' - - !!python/unicode 'rscadd': !!python/unicode 'Shuttle airlocks will automatically - open and close, preventing people from being sucked into space by because someone - on another z-level called a shuttle' - - !!python/unicode 'rscadd': !!python/unicode 'Some docking ports can also double - as airlocks' - - !!python/unicode 'rscadd': !!python/unicode 'Docking ports can be overriden to - prevent any automatic action. Shuttles will wait for players to open/close doors - manually' - - !!python/unicode 'rscadd': !!python/unicode 'Shuttles can be forced launched, - which will make them not wait for airlocks to be properly closed' + HarpyEagle: + - rscadd: Added docking ports for shuttles + - rscadd: Shuttle airlocks will automatically open and close, preventing people + from being sucked into space by because someone on another z-level called a + shuttle + - rscadd: Some docking ports can also double as airlocks + - rscadd: Docking ports can be overriden to prevent any automatic action. Shuttles + will wait for players to open/close doors manually + - rscadd: Shuttles can be forced launched, which will make them not wait for airlocks + to be properly closed 2014-06-15: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'bugfix': !!python/unicode 'Fixed wound autohealing regardless - of damage amount. The appropriate wound will now be assigned correctly based - on damage amount and type' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed several other bugs related - wounds that resulted in damage magically disappearing' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed various sharp objects not being - counted as sharp, bullets in particular' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed armour providing more protection - from bullets than it was supposed to' + HarpyEagle: + - bugfix: Fixed wound autohealing regardless of damage amount. The appropriate wound + will now be assigned correctly based on damage amount and type + - bugfix: Fixed several other bugs related wounds that resulted in damage magically + disappearing + - bugfix: Fixed various sharp objects not being counted as sharp, bullets in particular + - bugfix: Fixed armour providing more protection from bullets than it was supposed + to 2014-06-19: - !!python/unicode 'Chinsky': - - !!python/unicode 'rscadd': !!python/unicode 'Adds guest terminals on the map. - These wall terminals let anyone issue temporary IDs. Only access that issuer - has can be granted, and maximum time pass can be issued for is 20 minutes. All - operations are logged in terminals.' + Chinsky: + - rscadd: Adds guest terminals on the map. These wall terminals let anyone issue + temporary IDs. Only access that issuer has can be granted, and maximum time + pass can be issued for is 20 minutes. All operations are logged in terminals. 2014-06-20: - !!python/unicode 'Cael_Aislinn': - - !!python/unicode 'rscadd': !!python/unicode 'New discoverable items added to xenoarchaeology, - and new features for some existing ones. Artifact harvesters can now harvest - the secondary effect of artifacts as well as the primary one.
    + Cael_Aislinn: + - rscadd: 'New discoverable items added to xenoarchaeology, and new features for + some existing ones. Artifact harvesters can now harvest the secondary effect + of artifacts as well as the primary one.

    ' - - !!python/unicode 'tweak': !!python/unicode 'Artifact utilisers should be much - nicer/easier to use now.
    + - tweak: 'Artifact utilisers should be much nicer/easier to use now.
  • Alden-Saraspova counters and talking items should work properly now.
    @@ -1253,316 +1010,252 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
    ' 2014-07-01: - !!python/unicode 'Various': - - !!python/unicode 'experiment': !!python/unicode 'Hardsuit breaching.' - - !!python/unicode 'experiment': !!python/unicode 'Rewritten fire.' - - !!python/unicode 'experiment': !!python/unicode 'Supermatter now glows and sucks - things into it as it approaches criticality.' - - !!python/unicode 'rscadd': !!python/unicode 'Station Vox (Vox pariahs) are now - available.' - - !!python/unicode 'rscadd': !!python/unicode 'Wheelchairs.' - - !!python/unicode 'rscadd': !!python/unicode 'Cargo Trains.' - - !!python/unicode 'rscadd': !!python/unicode 'Hardsuit cycler machinery.' - - !!python/unicode 'rscadd': !!python/unicode 'Rewritten lighting (coloured lights!)' - - !!python/unicode 'rscadd': !!python/unicode 'New Mining machinery and rewritten - smelting.' - - !!python/unicode 'rscadd': !!python/unicode 'Rewritten autolathe' - - !!python/unicode 'rscadd': !!python/unicode 'Mutiny mode.' - - !!python/unicode 'rscadd': !!python/unicode 'NanoUI airlock and docking controllers.' - - !!python/unicode 'rscadd': !!python/unicode 'Completely rewritten shuttle code.' - - !!python/unicode 'rscadd': !!python/unicode 'Derelict Z-level replacement: construction - site.' - - !!python/unicode 'rscadd': !!python/unicode 'Computer3 laptops.' - - !!python/unicode 'rscadd': !!python/unicode 'Constructable SMES units.' - - !!python/unicode 'rscadd': !!python/unicode 'Omni-directional atmos machinery.' - - !!python/unicode 'rscadd': !!python/unicode 'Climbable tables and crates.' - - !!python/unicode 'rscadd': !!python/unicode 'Xenoflora added to Science.' - - !!python/unicode 'rscadd': !!python/unicode 'Utensils can be used to eat food.' - - !!python/unicode 'rscadd': !!python/unicode 'Decks of cards are now around the - station.' - - !!python/unicode 'rscadd': !!python/unicode 'Service robots can speak languages.' - - !!python/unicode 'wip': !!python/unicode 'Xenoarch updates and fixes.' - - !!python/unicode 'tweak': !!python/unicode 'Rewritten species-specific gear icon - handling.' - - !!python/unicode 'tweak': !!python/unicode 'Cats and borers can be picked up.' - - !!python/unicode 'tweak': !!python/unicode 'Botanist renamed to Gardener.' - - !!python/unicode 'tweak': !!python/unicode 'Hydroponics merged with the Kitchen.' - - !!python/unicode 'tweak': !!python/unicode 'Latejoin spawn points (Arrivals, Cryostorage, - Gateway).' - - !!python/unicode 'rscadd': !!python/unicode 'Escape pods only launch automatically - during emergency evacuations' - - !!python/unicode 'rscadd': !!python/unicode 'Escape pods can be made to launch - during regular crew transfers using the control panel inside the pod, or by - emagging the panel outside the pod' - - !!python/unicode 'rscadd': !!python/unicode 'When swiped or emagged, the crew - transfer shuttle can be delayed in addition to being launched early' + Various: + - experiment: Hardsuit breaching. + - experiment: Rewritten fire. + - experiment: Supermatter now glows and sucks things into it as it approaches criticality. + - rscadd: Station Vox (Vox pariahs) are now available. + - rscadd: Wheelchairs. + - rscadd: Cargo Trains. + - rscadd: Hardsuit cycler machinery. + - rscadd: Rewritten lighting (coloured lights!) + - rscadd: New Mining machinery and rewritten smelting. + - rscadd: Rewritten autolathe + - rscadd: Mutiny mode. + - rscadd: NanoUI airlock and docking controllers. + - rscadd: Completely rewritten shuttle code. + - rscadd: 'Derelict Z-level replacement: construction site.' + - rscadd: Computer3 laptops. + - rscadd: Constructable SMES units. + - rscadd: Omni-directional atmos machinery. + - rscadd: Climbable tables and crates. + - rscadd: Xenoflora added to Science. + - rscadd: Utensils can be used to eat food. + - rscadd: Decks of cards are now around the station. + - rscadd: Service robots can speak languages. + - wip: Xenoarch updates and fixes. + - tweak: Rewritten species-specific gear icon handling. + - tweak: Cats and borers can be picked up. + - tweak: Botanist renamed to Gardener. + - tweak: Hydroponics merged with the Kitchen. + - tweak: Latejoin spawn points (Arrivals, Cryostorage, Gateway). + - rscadd: Escape pods only launch automatically during emergency evacuations + - rscadd: Escape pods can be made to launch during regular crew transfers using + the control panel inside the pod, or by emagging the panel outside the pod + - rscadd: When swiped or emagged, the crew transfer shuttle can be delayed in addition + to being launched early 2014-07-06: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'rscadd': !!python/unicode 'Re-enabled and rewrote the wound - infection system' - - !!python/unicode 'rscadd': !!python/unicode 'Infections can be prevented by properly - bandaging and salving wounds' - - !!python/unicode 'rscadd': !!python/unicode 'Infections are cured by spaceacillin' + HarpyEagle: + - rscadd: Re-enabled and rewrote the wound infection system + - rscadd: Infections can be prevented by properly bandaging and salving wounds + - rscadd: Infections are cured by spaceacillin 2014-07-20: - !!python/unicode 'PsiOmegaDelta': - - !!python/unicode 'rscadd': !!python/unicode 'AI can now store up to five camera - locations and return to them when desired.' - - !!python/unicode 'rscadd': !!python/unicode 'AI can now alt+left click turfs in - camera view to list and interact with the objects.' - - !!python/unicode 'rscadd': !!python/unicode 'AI can now ctrl+click turret controls - to enable/disable turrets.' - - !!python/unicode 'rscadd': !!python/unicode 'AI can now alt+click turret controls - to toggle stun/lethal mode.' - - !!python/unicode 'rscadd': !!python/unicode 'AI can now select which channel to - state laws on.' + PsiOmegaDelta: + - rscadd: AI can now store up to five camera locations and return to them when desired. + - rscadd: AI can now alt+left click turfs in camera view to list and interact with + the objects. + - rscadd: AI can now ctrl+click turret controls to enable/disable turrets. + - rscadd: AI can now alt+click turret controls to toggle stun/lethal mode. + - rscadd: AI can now select which channel to state laws on. 2014-07-26: - !!python/unicode 'Whitellama': - - !!python/unicode 'rscadd': !!python/unicode 'Added dynamic flavour text.' - - !!python/unicode 'bugfix': !!python/unicode 'Fixed bug with suit fibers and fingerprints.' + Whitellama: + - rscadd: Added dynamic flavour text. + - bugfix: Fixed bug with suit fibers and fingerprints. 2014-07-31: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'tweak': !!python/unicode 'Stun batons now work like tasers and - deal agony instead of stun' - - !!python/unicode 'rscadd': !!python/unicode 'Being hit in the hands with a stun - weapon will cause whatever is being held to be dropped' - - !!python/unicode 'tweak': !!python/unicode 'Handcuffs now require an aggressive - grab to be used' + HarpyEagle: + - tweak: Stun batons now work like tasers and deal agony instead of stun + - rscadd: Being hit in the hands with a stun weapon will cause whatever is being + held to be dropped + - tweak: Handcuffs now require an aggressive grab to be used 2014-08-02: - !!python/unicode 'Whitellama': - - !!python/unicode 'bugfix': !!python/unicode 'Arcane tomes can now be stored on - bookshelves.' - - !!python/unicode 'bugfix': !!python/unicode 'Dionaea players no longer crash on - death, and now become nymphs properly.' + Whitellama: + - bugfix: Arcane tomes can now be stored on bookshelves. + - bugfix: Dionaea players no longer crash on death, and now become nymphs properly. 2014-08-05: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'tweak': !!python/unicode 'Atmos Rewrite. Many atmos devices - now use power according to their load and gas physics' - - !!python/unicode 'rscadd': !!python/unicode 'Pressure regulator device. Replaces - the passive gate and can regulate input or output pressure' - - !!python/unicode 'rscadd': !!python/unicode 'Gas heaters and gas coolers are now - constructable and can be upgraded with parts from research' - - !!python/unicode 'bugfix': !!python/unicode 'Fixes recharger and cell charger - power draw. Rechargers draw 15 kW, wall chargers draw 25 kW, and heavy-duty - cell chargers draw 40 kW. Cyborg charging stations draw 75 kW.' - - !!python/unicode 'bugfix': !!python/unicode 'Laptops, and various other machines, - now draw more reasonable amounts of power' - - !!python/unicode 'bugfix': !!python/unicode 'Machines will periodically update - their powered status if moved from a powered to an unpowered area and vice versa' + HarpyEagle: + - tweak: Atmos Rewrite. Many atmos devices now use power according to their load + and gas physics + - rscadd: Pressure regulator device. Replaces the passive gate and can regulate + input or output pressure + - rscadd: Gas heaters and gas coolers are now constructable and can be upgraded + with parts from research + - bugfix: Fixes recharger and cell charger power draw. Rechargers draw 15 kW, wall + chargers draw 25 kW, and heavy-duty cell chargers draw 40 kW. Cyborg charging + stations draw 75 kW. + - bugfix: Laptops, and various other machines, now draw more reasonable amounts + of power + - bugfix: Machines will periodically update their powered status if moved from a + powered to an unpowered area and vice versa 2014-08-27: - !!python/unicode 'Whitellama': - - !!python/unicode 'bugfix': !!python/unicode 'Made destination taggers more intuitive - so you know when you''ve tagged something' - - !!python/unicode 'rscadd': !!python/unicode 'Ported package label and tag sprites' - - !!python/unicode 'rscadd': !!python/unicode 'Ported using a pen on a package to - give it a title, or to write a note' - - !!python/unicode 'rscadd': !!python/unicode 'Donut boxes and egg boxes can be - constructed out of cardboard' + Whitellama: + - bugfix: Made destination taggers more intuitive so you know when you've tagged + something + - rscadd: Ported package label and tag sprites + - rscadd: Ported using a pen on a package to give it a title, or to write a note + - rscadd: Donut boxes and egg boxes can be constructed out of cardboard 2014-08-31: - !!python/unicode 'Whitellama': - - !!python/unicode 'bugfix': !!python/unicode 'Matches and candles can be used to - burn papers, too.' - - !!python/unicode 'bugfix': !!python/unicode 'Observers have a bit more time (20 - seconds, instead of 7.5) before the Diona join prompt disappears.' + Whitellama: + - bugfix: Matches and candles can be used to burn papers, too. + - bugfix: Observers have a bit more time (20 seconds, instead of 7.5) before the + Diona join prompt disappears. 2014-09-05: - !!python/unicode 'RavingManiac': - - !!python/unicode 'experiment': !!python/unicode 'NewPipe implemented: Supply and - scrubber pipes can be run in parallel without connecting to each other.' - - !!python/unicode 'rscadd': !!python/unicode 'Supply pipes will only connect to - supply pipes, vents and Universal Pipe Adapters(UPAs).' - - !!python/unicode 'rscadd': !!python/unicode 'Scrubber pipes will only connect - to scrubber pipes, scrubbers and UPAs.' - - !!python/unicode 'rscadd': !!python/unicode 'UPAs will connect to regular, scrubber - and supply pipes.' + RavingManiac: + - experiment: 'NewPipe implemented: Supply and scrubber pipes can be run in parallel + without connecting to each other.' + - rscadd: Supply pipes will only connect to supply pipes, vents and Universal Pipe + Adapters(UPAs). + - rscadd: Scrubber pipes will only connect to scrubber pipes, scrubbers and UPAs. + - rscadd: UPAs will connect to regular, scrubber and supply pipes. 2014-09-20: - !!python/unicode 'HarpyEagle': - - !!python/unicode 'bugfix': !!python/unicode 'Fixes evidence bags and boxes eating - each other. Evidence bags now store items by dragging the bag onto the item - to be stored.' + HarpyEagle: + - bugfix: Fixes evidence bags and boxes eating each other. Evidence bags now store + items by dragging the bag onto the item to be stored. 2014-09-28: - !!python/unicode 'Gamerofthegame': - - !!python/unicode 'rscadd': !!python/unicode 'Hoverpods fully supported, currently - orderable from cargo. Two slots, three cargo, space flight and a working mech - for all other intents and purposes.' - - !!python/unicode 'rscadd': !!python/unicode 'Added the Rigged laser and Passenger - Compartment equipment. The rigged laser is a weapon for working exosuits - just - a ordinary laser, but with triple the cool down and rather power inefficient. - The passenger compartment allows other people to board and hitch a ride on the - mech - such as in fire rescue or for space flight.' - !!python/unicode 'Zuhayr': - - !!python/unicode 'rscadd': !!python/unicode 'Organs can now be removed and transplanted.' - - !!python/unicode 'tweak': !!python/unicode 'Brain surgery is now the same as chest - surgery regarding the steps leading up to it.' - - !!python/unicode 'tweak': !!python/unicode 'Appendix and kidney now share the - groin and removing the first will prevent appendicitis.' - - !!python/unicode 'tweak': !!python/unicode 'Lots of backend surgery/organ stuff, - see the PR if you need to know.' + Gamerofthegame: + - rscadd: Hoverpods fully supported, currently orderable from cargo. Two slots, + three cargo, space flight and a working mech for all other intents and purposes. + - rscadd: Added the Rigged laser and Passenger Compartment equipment. The rigged + laser is a weapon for working exosuits - just a ordinary laser, but with triple + the cool down and rather power inefficient. The passenger compartment allows + other people to board and hitch a ride on the mech - such as in fire rescue + or for space flight. + Zuhayr: + - rscadd: Organs can now be removed and transplanted. + - tweak: Brain surgery is now the same as chest surgery regarding the steps leading + up to it. + - tweak: Appendix and kidney now share the groin and removing the first will prevent + appendicitis. + - tweak: Lots of backend surgery/organ stuff, see the PR if you need to know. 2014-10-01: - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'Zooming with the sniper rifle now - adds a view offset in the direction you are facing.' - - !!python/unicode 'rscadd': !!python/unicode 'Added binoculars - functionally similar - to sniper scope. Adminspawn-only for now.' - - !!python/unicode 'rscadd': !!python/unicode 'Bottles from chemistry now, like - beakers, use chemical overlays instead of fixed sprites.' - - !!python/unicode 'rscadd': !!python/unicode 'Being in space while not magbooted - to something will cause your sprite to bob up and down.' - !!python/unicode 'Zuhayr': - - !!python/unicode 'rscadd': !!python/unicode 'Added species organ checks to several - areas (phoron burn, welder burn, appendicitis, vox cortical stacks, flashes).' - - !!python/unicode 'rscadd': !!python/unicode 'Added VV option to add or remove - organs.' - - !!python/unicode 'rscadd': !!python/unicode 'Added simple bioprinter (adminspawn).' - - !!python/unicode 'rscadd': !!python/unicode 'Added smashing/slashing behavior - from xenos to some unarmed attacks.' - - !!python/unicode 'rscadd': !!python/unicode 'Added some new state icons for diona - nymphs.' - - !!python/unicode 'rscadd': !!python/unicode 'Added borer husk functionality (cortical - borers can turn dead humans into zombies).' - - !!python/unicode 'rscadd': !!python/unicode 'Added tackle verb.' - - !!python/unicode 'rscadd': !!python/unicode 'Added NO_SLIP.' - - !!python/unicode 'rscadd': !!python/unicode 'Added species-specific orans to Dionaea, - new Xenomorphs and vox.' - - !!python/unicode 'rscadd': !!python/unicode 'Added colour and species to blood - data.' - - !!python/unicode 'rscadd': !!python/unicode 'Added lethal consequences to missing - your heart.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed robot_talk_understand and - alien_talk_understand.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed attack_alien() and several - flavours of is_alien() procs.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed /mob/living/carbon/alien/humanoid.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed alien_hud().' - - !!python/unicode 'rscdel': !!python/unicode 'Removed IS_SLOW, NEEDS_LIGHT and - RAD_ABSORB.' - - !!python/unicode 'rscdel': !!python/unicode 'Renamed is_larva() to is_alien().' - - !!python/unicode 'tweak': !!python/unicode 'Refactored a ton of files, either - condensing or expanding them, or moving them to new directories.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored some attack vars from simple_animal - to mob/living level.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored internal organs to /mob/living/carbon - level.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored rad and light absorbtion - to organ level.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored brains to /obj/item/organ/brain.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored a lot of blood splattering - to use blood_splatter() proc.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored broadcast languages (changeling - and alien hiveminds, drone and binary chat) to actual languages.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored xenomorph abilities to - work for humans.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored xenomorphs into human species.' - - !!python/unicode 'tweak': !!python/unicode 'Rewrote larva_hud() and human_hud(). - The latter now takes data from the species datum.' - - !!python/unicode 'tweak': !!python/unicode 'Rewrote diona nymphs as descendents - of /mob/living/carbon/alien.' - - !!python/unicode 'tweak': !!python/unicode 'Rewrote xenolarva as descendents of - /mob/living/carbon/alien.' - - !!python/unicode 'tweak': !!python/unicode 'Rewrote /mob/living/carbon/alien.' - - !!python/unicode 'tweak': !!python/unicode 'Moved alcohol and toxin processing - to the liver.' - - !!python/unicode 'tweak': !!python/unicode 'Moved drone light proc to robot level, - added integrated_light_power and local_transmit vars to robots.' - - !!python/unicode 'tweak': !!python/unicode 'Moved human brainloss onto the brain - organ.' - - !!python/unicode 'tweak': !!python/unicode 'Shuffled around and collapsed several - redundant procs down to carbon level (hide, ventcrawl, Bump).' - - !!python/unicode 'tweak': !!python/unicode 'Fixed species swaps from NO_BLOOD - to those with blood killing the subject instantly.' + RavingManiac: + - rscadd: Zooming with the sniper rifle now adds a view offset in the direction + you are facing. + - rscadd: Added binoculars - functionally similar to sniper scope. Adminspawn-only + for now. + - rscadd: Bottles from chemistry now, like beakers, use chemical overlays instead + of fixed sprites. + - rscadd: Being in space while not magbooted to something will cause your sprite + to bob up and down. + Zuhayr: + - rscadd: Added species organ checks to several areas (phoron burn, welder burn, + appendicitis, vox cortical stacks, flashes). + - rscadd: Added VV option to add or remove organs. + - rscadd: Added simple bioprinter (adminspawn). + - rscadd: Added smashing/slashing behavior from xenos to some unarmed attacks. + - rscadd: Added some new state icons for diona nymphs. + - rscadd: Added borer husk functionality (cortical borers can turn dead humans into + zombies). + - rscadd: Added tackle verb. + - rscadd: Added NO_SLIP. + - rscadd: Added species-specific orans to Dionaea, new Xenomorphs and vox. + - rscadd: Added colour and species to blood data. + - rscadd: Added lethal consequences to missing your heart. + - rscdel: Removed robot_talk_understand and alien_talk_understand. + - rscdel: Removed attack_alien() and several flavours of is_alien() procs. + - rscdel: Removed /mob/living/carbon/alien/humanoid. + - rscdel: Removed alien_hud(). + - rscdel: Removed IS_SLOW, NEEDS_LIGHT and RAD_ABSORB. + - rscdel: Renamed is_larva() to is_alien(). + - tweak: Refactored a ton of files, either condensing or expanding them, or moving + them to new directories. + - tweak: Refactored some attack vars from simple_animal to mob/living level. + - tweak: Refactored internal organs to /mob/living/carbon level. + - tweak: Refactored rad and light absorbtion to organ level. + - tweak: Refactored brains to /obj/item/organ/brain. + - tweak: Refactored a lot of blood splattering to use blood_splatter() proc. + - tweak: Refactored broadcast languages (changeling and alien hiveminds, drone and + binary chat) to actual languages. + - tweak: Refactored xenomorph abilities to work for humans. + - tweak: Refactored xenomorphs into human species. + - tweak: Rewrote larva_hud() and human_hud(). The latter now takes data from the + species datum. + - tweak: Rewrote diona nymphs as descendents of /mob/living/carbon/alien. + - tweak: Rewrote xenolarva as descendents of /mob/living/carbon/alien. + - tweak: Rewrote /mob/living/carbon/alien. + - tweak: Moved alcohol and toxin processing to the liver. + - tweak: Moved drone light proc to robot level, added integrated_light_power and + local_transmit vars to robots. + - tweak: Moved human brainloss onto the brain organ. + - tweak: Shuffled around and collapsed several redundant procs down to carbon level + (hide, ventcrawl, Bump). + - tweak: Fixed species swaps from NO_BLOOD to those with blood killing the subject + instantly. 2014-11-01: - !!python/unicode 'PsiOmegaDelta': - - !!python/unicode 'bugfix': !!python/unicode 'Adds the last missing step to deconstruct - fire alarms. Apply wirecutters.' - - !!python/unicode 'rscadd': !!python/unicode 'There''s a "new" mining outpost nearby - the Research outpost.' - - !!python/unicode 'rscadd': !!python/unicode 'Manifest ghosts now have spookier - names.' - - !!python/unicode 'rscadd': !!python/unicode 'Adds a gas monitor computer for the - toxin mixing chamber.' - - !!python/unicode 'rscadd': !!python/unicode 'AI can now change the display of - individual AI status screens.' - - !!python/unicode 'rscadd': !!python/unicode 'More ion laws..' - - !!python/unicode 'rscadd': !!python/unicode 'All turrets have been replaced with - portable variants. Potential targets can be configured on a per turret basis.' - - !!python/unicode 'bugfix': !!python/unicode 'Improved crew monitor map positioning.' - - !!python/unicode 'rscadd': !!python/unicode 'Can now order plastic, body-, and - statis bags from cargo' - - !!python/unicode 'rscadd': !!python/unicode 'PDAs now receive newscasts.' - - !!python/unicode 'rscadd': !!python/unicode '(De)constructable emergency shutters.' - - !!python/unicode 'rscadd': !!python/unicode 'Borgs can now select to simply state - their laws or select a radio channel, same as the AI.' + PsiOmegaDelta: + - bugfix: Adds the last missing step to deconstruct fire alarms. Apply wirecutters. + - rscadd: There's a "new" mining outpost nearby the Research outpost. + - rscadd: Manifest ghosts now have spookier names. + - rscadd: Adds a gas monitor computer for the toxin mixing chamber. + - rscadd: AI can now change the display of individual AI status screens. + - rscadd: More ion laws.. + - rscadd: All turrets have been replaced with portable variants. Potential targets + can be configured on a per turret basis. + - bugfix: Improved crew monitor map positioning. + - rscadd: Can now order plastic, body-, and statis bags from cargo + - rscadd: PDAs now receive newscasts. + - rscadd: (De)constructable emergency shutters. + - rscadd: Borgs can now select to simply state their laws or select a radio channel, + same as the AI. 2014-11-04: - !!python/unicode 'TwistedAkai': - - !!python/unicode 'rscadd': !!python/unicode 'Almost any window which has been - fully unsecured can now be dismantled with a wrench.' + TwistedAkai: + - rscadd: Almost any window which has been fully unsecured can now be dismantled + with a wrench. 2014-11-08: - !!python/unicode 'PsiOmegaDelta': - - !!python/unicode 'rscadd': !!python/unicode 'Service personnel now have their - own frequency to communicate over. Use "say :v".' - - !!python/unicode 'rscadd': !!python/unicode 'The AI can now has proper quick access - to its private channel. Use "say :o".' - - !!python/unicode 'rscadd': !!python/unicode 'Newscasters supports photo captions. - Simply pen one on the attached photo.' - - !!python/unicode 'rscadd': !!python/unicode 'Once made visible by a cultist ghosts - can toggle visiblity at will.' - - !!python/unicode 'rscadd': !!python/unicode 'Detonating cyborgs using the cyborg - monitor console now notifies the master AI, if any.' - - !!python/unicode 'rscadd': !!python/unicode 'More machinery, such as APCs, air - alarms, etc., now support attaching signalers to the wires.' - - !!python/unicode 'tweak': !!python/unicode 'Random event overhaul. Admins may - wish check the verb "Event Manager Panel".' + PsiOmegaDelta: + - rscadd: Service personnel now have their own frequency to communicate over. Use + "say :v". + - rscadd: The AI can now has proper quick access to its private channel. Use "say + :o". + - rscadd: Newscasters supports photo captions. Simply pen one on the attached photo. + - rscadd: Once made visible by a cultist ghosts can toggle visiblity at will. + - rscadd: Detonating cyborgs using the cyborg monitor console now notifies the master + AI, if any. + - rscadd: More machinery, such as APCs, air alarms, etc., now support attaching + signalers to the wires. + - tweak: Random event overhaul. Admins may wish check the verb "Event Manager Panel". 2014-11-22: - !!python/unicode 'Zuhayr': - - !!python/unicode 'rscadd': !!python/unicode 'Added the /obj/item/weapon/rig class - - back-mounted deployable hardsuits.' - - !!python/unicode 'rscadd': !!python/unicode 'Replaced existing hardsuits with - ''voidsuits'', functionally identical.' - - !!python/unicode 'rscdel': !!python/unicode 'Removed the mounted device and helmet/boot - procs from voidsuits.' - - !!python/unicode 'tweak': !!python/unicode 'Refactored a shit-ton of ninja code - into the new rig class.' - - !!python/unicode 'wip': !!python/unicode 'This is more than likely going to take - a lot of balancing to get into a good place.' + Zuhayr: + - rscadd: Added the /obj/item/weapon/rig class - back-mounted deployable hardsuits. + - rscadd: Replaced existing hardsuits with 'voidsuits', functionally identical. + - rscdel: Removed the mounted device and helmet/boot procs from voidsuits. + - tweak: Refactored a shit-ton of ninja code into the new rig class. + - wip: This is more than likely going to take a lot of balancing to get into a good + place. 2015-01-09: - !!python/unicode 'Zuhayr': - - !!python/unicode 'tweak': !!python/unicode 'Voice changers no longer use ID cards. - They have Toggle and Set Voice verbs on the actual mask object now.' - - !!python/unicode 'rscadd': !!python/unicode 'Readded moonwalking. Alt-dir to face - new dir, or Face-Direction verb to face current dir.' + Zuhayr: + - tweak: Voice changers no longer use ID cards. They have Toggle and Set Voice verbs + on the actual mask object now. + - rscadd: Readded moonwalking. Alt-dir to face new dir, or Face-Direction verb to + face current dir. 2015-02-04: - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'Holodeck is now bigger and better, - with toggleable gravity and a new courtroom setting' - !!python/unicode 'TwistedAkai': - - !!python/unicode 'bugfix': !!python/unicode 'Purple Combs should now be visible - and have their proper icon' + RavingManiac: + - rscadd: Holodeck is now bigger and better, with toggleable gravity and a new courtroom + setting + TwistedAkai: + - bugfix: Purple Combs should now be visible and have their proper icon 2015-02-12: - !!python/unicode 'Daranz': - - !!python/unicode 'rscadd': !!python/unicode 'Vending machines now use NanoUI and - accept cash. The vendor account can now be suspended to disable all sales in - all machines on station.' + Daranz: + - rscadd: Vending machines now use NanoUI and accept cash. The vendor account can + now be suspended to disable all sales in all machines on station. 2015-02-16: - !!python/unicode 'RavingManiac': - - !!python/unicode 'rscadd': !!python/unicode 'Say hello to the new Thermoelectric - Supermatter Engine. Read the operating manual to get started.' + RavingManiac: + - rscadd: Say hello to the new Thermoelectric Supermatter Engine. Read the operating + manual to get started. 2015-02-18: - !!python/unicode 'PsiOmegaDelta': - - !!python/unicode 'rscadd': !!python/unicode 'Synths now have timestamped radio - and chat messages.' - - !!python/unicode 'rscadd': !!python/unicode 'New and updated uplink items.' - - !!python/unicode 'rscadd': !!python/unicode 'Multiple AIs can now share the same - holopad.' - - !!python/unicode 'rscadd': !!python/unicode 'The AI now has built-in consoles, - accessible from the subsystem tab.' + PsiOmegaDelta: + - rscadd: Synths now have timestamped radio and chat messages. + - rscadd: New and updated uplink items. + - rscadd: Multiple AIs can now share the same holopad. + - rscadd: The AI now has built-in consoles, accessible from the subsystem tab. 2015-02-24: - !!python/unicode 'Zuhayr': - - !!python/unicode 'experiment': !!python/unicode 'Major changes to the kitchen - and hydroponics mechanics. Review the detailed changelog here,' + Zuhayr: + - experiment: Major changes to the kitchen and hydroponics mechanics. Review the + detailed changelog here, 2015-04-07: - !!python/unicode 'RavingManiac': - - !!python/unicode 'tweak': !!python/unicode 'You can now pay vending machines and - EFTPOS scanners without removing your ID from your PDA or wallet. Clicking on - the vending machine with your ID/PDA/wallet/cash also brings up the menu now - instead of attacking the vending machine.' + RavingManiac: + - tweak: You can now pay vending machines and EFTPOS scanners without removing your + ID from your PDA or wallet. Clicking on the vending machine with your ID/PDA/wallet/cash + also brings up the menu now instead of attacking the vending machine. 2015-04-18: PsiOmegaDelta: - rscadd: Added a changelog editing system that should cause fewer conflicts and @@ -2044,3 +1737,48 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. Hubblenaut: - bugfix: Welding a broken camera will use the correct icon. - tweak: Camera assemblies remember their tag and network from previous usage. +2016-02-01: + Lady of Ravens: + - rscadd: Ported Aurora's stungloves and modified force gloves. + - rscadd: Ported Aurora's mechanics of heavy machinery eating hair. + Lord Lag: + - rscadd: Ported the Vaurca. + Mahzel: + - rscadd: Ported Aurora's intern positions. + - rscadd: Ported Aurora's magnetic door locks. + - rscadd: Ported Aurora's prisoner suits. + Ryan784: + - rscadd: Ported Aurora's null-rod conversion mechanics for cult. + - rscadd: Ported Aurora's welderbomb delay and related admin/mod actions. + - rscadd: Ported Aurora's horsemask removal spell. + - rscadd: Ported Aurora's glove kits for aliens. + - rscadd: Ported Aurora's gold slime mechanics. + - rscadd: Ported Aurora's lawgiver. + - rscadd: Ported the AI HUD, originally by Jack-Fractal. + - rscadd: Ported Aurora's footstep sounds. + - experiment: Ported the vampire code. Needs a lot of testing and may break. + Skull132: + - rscadd: Ported Telescience from TGStation. + - rscadd: Ported Aurora's old rifle code, with minor refractors. + - rscadd: Ported Aurora's forensics code. Code refractored by Zuhayr. + - rscadd: Ported SQL based whitelisting, playernotes, warnings. Refractored where + necessary. + - tweak: Adjusted the Bay12 paralyze player function to work as our wind function + used to work. It also now gives warnings to people nearby if someone was winded. + - tweak: Made tasers to actually fire projectiles again. And not lasers. Tasers + are not lasers, sillys. + - tweak: Handcuffing does not require you to have the person in level 2 grab, as + it does in vanilla bay. +2016-02-12: + Ryan784: + - bugfix: Fixed ChemMaster pill creation spam. + - bugfix: Chaplains can no longer be Vampires. + - bugfix: IPCs will no longer be considered for innapropriate antag positions (Vampire + and Changeling). + - bugfix: Changelings will now retain proper abilities using lesser form, and the + ability to transform back. + - bugfix: pAI suicide now works correctly. +2016-02-15: + Lord Lag: + - bugfix: Synthetics should now be able to understand Rootspeak and Vaurcese. + - bugfix: Core Vaurca mechanics are back diff --git a/html/changelogs/Ryan784-development.yml b/html/changelogs/Ryan784-development.yml deleted file mode 100644 index aedef9d845f..00000000000 --- a/html/changelogs/Ryan784-development.yml +++ /dev/null @@ -1,14 +0,0 @@ -author: Ryan784 - -delete-after: True - -changes: - - rscadd: "Ported Aurora's null-rod conversion mechanics for cult." - - rscadd: "Ported Aurora's welderbomb delay and related admin/mod actions." - - rscadd: "Ported Aurora's horsemask removal spell." - - rscadd: "Ported Aurora's glove kits for aliens." - - rscadd: "Ported Aurora's gold slime mechanics." - - rscadd: "Ported Aurora's lawgiver." - - rscadd: "Ported the AI HUD, originally by Jack-Fractal." - - rscadd: "Ported Aurora's footstep sounds." - - experiment: "Ported the vampire code. Needs a lot of testing and may break." diff --git a/html/changelogs/Skull132-development.yml b/html/changelogs/Skull132-development.yml deleted file mode 100644 index 2dc9a1db32c..00000000000 --- a/html/changelogs/Skull132-development.yml +++ /dev/null @@ -1,12 +0,0 @@ -author: Skull132 - -delete-after: True - -changes: - - rscadd: "Ported Telescience from TGStation." - - rscadd: "Ported Aurora's old rifle code, with minor refractors." - - rscadd: "Ported Aurora's forensics code. Code refractored by Zuhayr." - - rscadd: "Ported SQL based whitelisting, playernotes, warnings. Refractored where necessary." - - tweak: "Adjusted the Bay12 paralyze player function to work as our wind function used to work. It also now gives warnings to people nearby if someone was winded." - - tweak: "Made tasers to actually fire projectiles again. And not lasers. Tasers are not lasers, sillys." - - tweak: "Handcuffing does not require you to have the person in level 2 grab, as it does in vanilla bay." diff --git a/html/changelogs/[Lord Lag]-[Synthetic Language fix].yml b/html/changelogs/[Lord Lag]-[Synthetic Language fix].yml deleted file mode 100644 index 23b873775d7..00000000000 --- a/html/changelogs/[Lord Lag]-[Synthetic Language fix].yml +++ /dev/null @@ -1,6 +0,0 @@ -author: Lord Lag - -delete-after: True - -changes: - - bugfix: "Synthetics should now be able to understand Rootspeak and Vaurcese." diff --git a/html/changelogs/[Lord Lag]-[Vaurca Flag work around].yml b/html/changelogs/[Lord Lag]-[Vaurca Flag work around].yml deleted file mode 100644 index 00d4650d2e8..00000000000 --- a/html/changelogs/[Lord Lag]-[Vaurca Flag work around].yml +++ /dev/null @@ -1,6 +0,0 @@ -author: Lord Lag - -delete-after: True - -changes: - - bugfix: "Core Vaurca mechanics are back" diff --git a/html/changelogs/ladyofravens-development.yml b/html/changelogs/ladyofravens-development.yml deleted file mode 100644 index 9710d64d697..00000000000 --- a/html/changelogs/ladyofravens-development.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: Lady of Ravens - -delete-after: True - -changes: - - rscadd: "Ported Aurora's stungloves and modified force gloves." - - rscadd: "Ported Aurora's mechanics of heavy machinery eating hair." diff --git a/html/changelogs/lordlag-development.yml b/html/changelogs/lordlag-development.yml deleted file mode 100644 index c86a33789bd..00000000000 --- a/html/changelogs/lordlag-development.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: Lord Lag - -delete-after: True - -changes: - - rscadd: "Ported the Vaurca." diff --git a/html/changelogs/mahzel-development.yml b/html/changelogs/mahzel-development.yml deleted file mode 100644 index e109ea41444..00000000000 --- a/html/changelogs/mahzel-development.yml +++ /dev/null @@ -1,8 +0,0 @@ -author: Mahzel - -delete-after: True - -changes: - - rscadd: "Ported Aurora's intern positions." - - rscadd: "Ported Aurora's magnetic door locks." - - rscadd: "Ported Aurora's prisoner suits."