From 9917906834bdd6f2fbf0ebddbaf35e02de0af985 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Wed, 20 Apr 2016 15:40:16 -0700 Subject: [PATCH 1/7] RIGsuit fixes - Replaced /proc/toggle_seals with /proc/unseal and /proc/seal - You can no longer retract anything but the helmet after you seal the suit (what the fuck was the point of having the seal if it does nothing but make it latch onto your back) - Clicking on parts and popping them off shouldn't be a thing anymore (hopefully) - Rewrote some of the nasty toggle_piece code. --- code/modules/clothing/spacesuits/rig/rig.dm | 422 +++++++++++------- .../clothing/spacesuits/rig/rig_verbs.dm | 26 +- 2 files changed, 265 insertions(+), 183 deletions(-) diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 066c4893f73..445c196ed46 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -190,112 +190,217 @@ piece.flags &= ~(STOPSPRESSUREDMAGE|AIRTIGHT) update_icon(1) -/obj/item/weapon/rig/proc/toggle_seals(var/mob/living/carbon/human/M, var/mob/living/user, var/instant) - - if(sealing) return - - if(!check_power_cost(M, 1)) //costs tiny amount of power to unseal/seal +/obj/item/weapon/rig/proc/seal(mob/living/user) + if(sealing) return 0 - deploy(M, instant) + if(!wearer || !user) + return - var/seal_target = (flags & NODROP) - var/failed_to_seal + var/sealed = (flags & NODROP) + if(sealed) + to_chat(user, "\The [src] is already sealed!") + return 0 - flags |= NODROP // No removing the suit while unsealing. - sealing = 1 + if(!check_power_cost(user, 1)) //need power to seal the suit + return 0 - if(!seal_target && !suit_is_deployed()) - M.visible_message("[M]'s suit flashes an error light.","Your suit flashes an error light. It can't function properly without being fully deployed.") - failed_to_seal = 1 + var/failed_to_seal = FALSE + + if(!suit_is_deployed()) + to_chat(user, "\The [src] cannot seal, as it is not fully deployed!") + return 0 + + flags |= NODROP + sealing = TRUE + + to_chat(user, "\The [src] begins to tighten it's seals.") + wearer.visible_message("\The [wearer]'s suit emits a quiet hum as it begins to tighten it's seals.", + "With a quiet hum, your suit begins to seal.") + + if(seal_delay && !do_after(user, seal_delay, target = wearer)) + to_chat(user, "You must remain still to seal \the [src]!") + failed_to_seal = TRUE if(!failed_to_seal) + deploy(user) - if(!instant) - M.visible_message("[M]'s suit emits a quiet hum as it begins to adjust its seals.","With a quiet hum, the suit begins running checks and adjusting components.") - if(seal_delay && !do_after(user, seal_delay, target = M)) - if(user) - to_chat(user, "You must remain still while the suit is adjusting the components.") - failed_to_seal = 1 + var/list/pieces_data = list(list(wearer.shoes, boots, "boots", boot_type), + list(wearer.gloves, gloves, "gloves", glove_type), + list(wearer.head, helmet, "helmet", helm_type), + list(wearer.wear_suit, chest, "chest", chest_type)) - if(!M) - failed_to_seal = 1 - else - for(var/list/piece_data in list(list(M.shoes,boots,"boots",boot_type),list(M.gloves,gloves,"gloves",glove_type),list(M.head,helmet,"helmet",helm_type),list(M.wear_suit,chest,"chest",chest_type))) + for(var/list/piece_data in pieces_data) + var/obj/item/user_piece = piece_data[1] + var/obj/item/correct_piece = piece_data[2] + var/msg_type = piece_data[3] + var/piece_type = piece_data[4] - var/obj/item/piece = piece_data[1] - var/obj/item/compare_piece = piece_data[2] - var/msg_type = piece_data[3] - var/piece_type = piece_data[4] + if(!user_piece || !piece_type) + continue - if(!piece || !piece_type) - continue + if(user_piece != correct_piece) + to_chat(user, "\The [user_piece] is blocking \the [src] from deploying.") + failed_to_seal = TRUE - if(!istype(M) || !istype(piece) || !istype(compare_piece) || !msg_type) - if(M) - to_chat(M, "You must remain still while the suit is adjusting the components.") - failed_to_seal = 1 - break + if(seal_delay && !do_after(user, seal_delay, needhand = 0, target = wearer)) + to_chat(user, "You must remain still to seal \the [src]!") + failed_to_seal = TRUE - if(!failed_to_seal && M.back == src && piece == compare_piece) + if(failed_to_seal) + break - if(seal_delay && !instant && !do_after(user, seal_delay, needhand = 0, target = M)) - failed_to_seal = 1 + correct_piece.icon_state = "[initial(icon_state)]_sealed" + switch(msg_type) + if("boots") + to_chat(wearer, "\The [correct_piece] seal around your feet.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been sealed.") + wearer.update_inv_shoes() + if("gloves") + to_chat(wearer, "\The [correct_piece] tighten around your fingers and wrists.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been sealed.") + wearer.update_inv_gloves() + if("chest") + to_chat(wearer, "\The [correct_piece] cinches tight again your chest.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been sealed.") + wearer.update_inv_wear_suit() + if("helmet") + to_chat(wearer, "\The [correct_piece] hisses closed.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been sealed.") + wearer.update_inv_head() + if(helmet) + helmet.update_light(wearer) - piece.icon_state = "[initial(icon_state)][!seal_target ? "_sealed" : ""]" - switch(msg_type) - if("boots") - to_chat(M, "\The [piece] [!seal_target ? "seal around your feet" : "relax their grip on your legs"].") - M.update_inv_shoes() - if("gloves") - to_chat(M, "\The [piece] [!seal_target ? "tighten around your fingers and wrists" : "become loose around your fingers"].") - M.update_inv_gloves() - if("chest") - to_chat(M, "\The [piece] [!seal_target ? "cinches tight again your chest" : "releases your chest"].") - M.update_inv_wear_suit() - if("helmet") - to_chat(M, "\The [piece] hisses [!seal_target ? "closed" : "open"].") - M.update_inv_head() - if(helmet) - helmet.update_light(wearer) + correct_piece.armor["bio"] = 100 - //sealed pieces become airtight, protecting against diseases - if (!seal_target) - piece.armor["bio"] = 100 - else - piece.armor["bio"] = src.armor["bio"] - - else - failed_to_seal = 1 - - if((M && !(istype(M) && M.back == src) && !istype(M,/mob/living/silicon)) || (!seal_target && !suit_is_deployed())) - failed_to_seal = 1 - - sealing = null + sealing = FALSE if(failed_to_seal) - for(var/obj/item/piece in list(helmet,boots,gloves,chest)) - if(!piece) continue - piece.icon_state = "[initial(icon_state)][!seal_target ? "" : "_sealed"]" - if(seal_target) - flags |= NODROP - else - flags &= ~NODROP + for(var/obj/item/piece in list(helmet, boots, gloves, chest)) + if(!piece) + continue + piece.icon_state = "[initial(icon_state)]" + flags &= ~NODROP if(airtight) update_component_sealed() update_icon(1) return 0 - // Success! - if(seal_target) - flags &= ~NODROP - else - flags |= NODROP - to_chat(M, "Your entire suit [!(flags & NODROP) ? "loosens as the components relax" : "tightens around you as the components lock into place"].") + if(user != wearer) + to_chat(user, "\The [src] has been loosened.") + to_chat(wearer, "Your entire suit tightens around you as the components lock into place.") + if(airtight) + update_component_sealed() + update_icon(1) + +/obj/item/weapon/rig/proc/unseal(mob/living/user) + if(sealing) + return 0 + + if(!wearer || !user) + return + + var/sealed = (flags & NODROP) + if(!sealed) + to_chat(user, "\The [src] is already unsealed!") + return 0 + + sealing = TRUE + + var/failed_to_seal = FALSE + + if(!suit_is_deployed()) + to_chat(user, "\The [src] cannot unseal, as it is not fully deployed!") + failed_to_seal = TRUE + + if(!failed_to_seal) + if(user != wearer) + to_chat(user, "\The [src] begins to loosen it's seals.") + wearer.visible_message("\The [wearer]'s suit emits a quiet hum as it begins to loosen it's seals.", + "With a quiet hum, your suit begins to unseal.") + + if(seal_delay && !do_after(user, seal_delay, target = wearer)) + to_chat(user, "You must remain still to unseal \the [src]!") + failed_to_seal = TRUE + + if(!failed_to_seal) + var/list/pieces_data = list(list(wearer.shoes, boots, "boots", boot_type), + list(wearer.gloves, gloves, "gloves", glove_type), + list(wearer.head, helmet, "helmet", helm_type), + list(wearer.wear_suit, chest, "chest", chest_type)) + + for(var/list/piece_data in pieces_data) + var/obj/item/user_piece = piece_data[1] + var/obj/item/correct_piece = piece_data[2] + var/msg_type = piece_data[3] + var/piece_type = piece_data[4] + + if(!correct_piece || !piece_type) + continue + + if(user_piece != correct_piece) + to_chat(user, "\The [user_piece] is blocking \the [src] from deploying.") + failed_to_seal = TRUE + + if(seal_delay && !do_after(user, seal_delay, needhand = 0, target = wearer)) + to_chat(user, "You must remain still to unseal \the [src]!") + failed_to_seal = TRUE + + if(failed_to_seal) + break + + correct_piece.icon_state = "[initial(icon_state)]" + switch(msg_type) + if("boots") + to_chat(wearer, "\The [correct_piece] relax their grip on your legs.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been unsealed.") + wearer.update_inv_shoes() + if("gloves") + to_chat(wearer, "\The [correct_piece] become loose around your fingers.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been unsealed.") + wearer.update_inv_gloves() + if("chest") + to_chat(wearer, "\The [correct_piece] releases your chest.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been unsealed.") + wearer.update_inv_wear_suit() + if("helmet") + to_chat(wearer, "\The [correct_piece] hisses open.") + if(user != wearer) + to_chat(user, "\The [correct_piece] has been unsealed.") + wearer.update_inv_head() + if(helmet) + helmet.update_light(wearer) + + correct_piece.armor["bio"] = armor["bio"] + + sealing = FALSE + + if(failed_to_seal) + for(var/obj/item/piece in list(helmet, boots, gloves, chest)) + if(!piece) + continue + piece.icon_state = "[initial(icon_state)]_sealed" + if(airtight) + update_component_sealed() + update_icon(1) + return 0 + + if(user != wearer) + to_chat(user, "\The [src] has been unsealed.") + to_chat(wearer, "Your entire suit loosens as the components relax.") + + flags &= ~NODROP + + for(var/obj/item/rig_module/module in installed_modules) + module.deactivate() - if(!(flags & NODROP)) - for(var/obj/item/rig_module/module in installed_modules) - module.deactivate() if(airtight) update_component_sealed() update_icon(1) @@ -310,7 +415,6 @@ piece.flags |= AIRTIGHT /obj/item/weapon/rig/process() - // If we've lost any parts, grab them back. var/mob/living/M for(var/obj/item/piece in list(gloves,boots,helmet,chest)) @@ -367,7 +471,6 @@ cell.use(module.process()*10) /obj/item/weapon/rig/proc/check_power_cost(var/mob/living/user, var/cost, var/use_unconcious, var/obj/item/rig_module/mod, var/user_is_ai) - if(!istype(user)) return 0 @@ -524,7 +627,6 @@ return 1 -//TODO: Fix Topic vulnerabilities for malfunction and AI override. /obj/item/weapon/rig/Topic(href,href_list) if(!check_suit_access(usr)) return 0 @@ -532,11 +634,13 @@ if(href_list["toggle_piece"]) if(ishuman(usr) && (usr.stat || usr.stunned || usr.lying)) return 0 - toggle_piece(href_list["toggle_piece"], wearer, user = usr) + toggle_piece(href_list["toggle_piece"], usr) else if(href_list["toggle_seals"]) - toggle_seals(wearer, usr) + if(flags & NODROP) + unseal(usr) + else + seal(usr) else if(href_list["interact_module"]) - var/module_index = text2num(href_list["interact_module"]) if(module_index > 0 && module_index <= installed_modules.len) @@ -559,7 +663,7 @@ locked = !locked usr.set_machine(src) - src.add_fingerprint(usr) + add_fingerprint(usr) return 0 /obj/item/weapon/rig/proc/notify_ai(var/message) @@ -570,8 +674,11 @@ if(ai && ai.client && !ai.stat) to_chat(ai, "[message]") -/obj/item/weapon/rig/equipped(mob/living/carbon/human/M) +/obj/item/weapon/rig/equipped(mob/living/carbon/human/M, slot) ..() + if(!istype(M) || slot != slot_back) + return //we don't care about picking up/nonhumans + spawn(1) //equipped() is called BEFORE the item is actually set as the slot if(seal_delay > 0 && istype(M) && M.back == src) @@ -588,115 +695,100 @@ wearer.wearing_rig = src update_icon() -/obj/item/weapon/rig/proc/toggle_piece(var/piece, var/mob/living/carbon/human/H, var/deploy_mode, var/force, var/mob/living/user) +/obj/item/weapon/rig/proc/toggle_piece(var/piece, var/mob/living/user, var/deploy_mode, var/force) + if(!istype(wearer) || wearer.back != src) + if(force) //can only force retracting sorry + for(var/obj/item/uneq_piece in list(helmet, gloves, boots, chest)) + if(uneq_piece) + if(isliving(uneq_piece.loc)) + var/mob/living/L = uneq_piece.loc + L.unEquip(uneq_piece, 1) + uneq_piece.flags &= ~NODROP + uneq_piece.forceMove(src) + return 0 - if(!force) //forces the hardsuit to ignore most checks, as the suit being dropped should retract all pieces regardless of power status - if(sealing || !cell || !cell.charge) //or else you have issues with shit getting stuck - return + if(sealing || !cell || !cell.charge) + return 0 - if(!istype(wearer) || !wearer.back == src) - return - - if(usr == wearer && (usr.stat||usr.paralysis||usr.stunned)) // If the usr isn't wearing the suit it's probably an AI. - return + if(user == wearer && user.incapacitated()) // If the user isn't wearing the suit it's probably an AI. + return 0 var/obj/item/check_slot var/equip_to var/obj/item/use_obj - if(!H) - return - switch(piece) if("helmet") equip_to = slot_head use_obj = helmet - check_slot = H.head + check_slot = wearer.head if("gauntlets") equip_to = slot_gloves use_obj = gloves - check_slot = H.gloves + check_slot = wearer.gloves if("boots") equip_to = slot_shoes use_obj = boots - check_slot = H.shoes + check_slot = wearer.shoes if("chest") equip_to = slot_wear_suit use_obj = chest - check_slot = H.wear_suit + check_slot = wearer.wear_suit if(use_obj) - if(check_slot == use_obj && deploy_mode != ONLY_DEPLOY) - - var/mob/living/carbon/human/holder - - if(use_obj) - holder = use_obj.loc - if(istype(holder)) - if(use_obj && check_slot == use_obj) - to_chat(H, "Your [use_obj.name] [use_obj.gender == PLURAL ? "retract" : "retracts"] swiftly.") - use_obj.flags &= ~NODROP - holder.unEquip(use_obj, 1) - use_obj.forceMove(src) - - else if (deploy_mode != ONLY_RETRACT) - if(check_slot) - if(check_slot != use_obj) - to_chat(H, "You are unable to deploy \the [piece] as \the [check_slot] [check_slot.gender == PLURAL ? "are" : "is"] in the way.") + if(check_slot == use_obj && deploy_mode != ONLY_DEPLOY) //user is wearing it, retract it if not forced to deploy + if((flags & NODROP) && equip_to != slot_head && !force) //you can only retract the helmet if the suit isn't unsealed + to_chat(user, "You can't retract \the [use_obj] while the suit is sealed!") return - else - use_obj.forceMove(H) + + if(isliving(use_obj.loc)) + var/mob/living/L = use_obj.loc use_obj.flags &= ~NODROP - if(!H.equip_to_slot_if_possible(use_obj, equip_to, 0, 1)) - use_obj.forceMove(src) - else - to_chat(H, "Your [use_obj.name] [use_obj.gender == PLURAL ? "deploy" : "deploys"] swiftly.") - use_obj.flags |= NODROP + L.unEquip(use_obj, 1) + use_obj.forceMove(src) + to_chat(wearer, "Your [use_obj] [use_obj.gender == PLURAL ? "retract" : "retracts"] swiftly.") + + else if(deploy_mode != ONLY_RETRACT) + if(check_slot && check_slot != use_obj) + to_chat(wearer, "You are unable to deploy \the [piece] as \the [check_slot] [check_slot.gender == PLURAL ? "are" : "is"] in the way.") + return + use_obj.forceMove(wearer) + use_obj.flags &= ~NODROP + if(!wearer.equip_to_slot_if_possible(use_obj, equip_to, 0, 1)) + use_obj.forceMove(src) + else + to_chat(wearer, "Your [use_obj.name] [use_obj.gender == PLURAL ? "deploy" : "deploys"] swiftly.") + use_obj.flags |= NODROP if(piece == "helmet" && helmet) - helmet.update_light(H) + helmet.update_light(wearer) -/obj/item/weapon/rig/proc/deploy(mob/M,var/sealed, mob/user) +/obj/item/weapon/rig/proc/deploy(mob/user) + if(!wearer || !user) + return 0 - var/mob/living/carbon/human/H = M + if(flags & NODROP) + if(wearer.head && wearer.head != helmet) + to_chat(user, "\The [wearer.head] is blocking \the [src] from deploying!") + return 0 + if(wearer.gloves && wearer.gloves != gloves) + to_chat(user, "\The [wearer.gloves] is preventing \the [src] from deploying!") + return 0 + if(wearer.shoes && wearer.shoes != boots) + to_chat(user, "\The [wearer.shoes] is preventing \the [src] from deploying!") + return 0 + if(wearer.wear_suit && wearer.wear_suit != chest) + to_chat(user, "\The [wearer.wear_suit] is preventing \the [src] from deploying!") + return 0 - if(!H || !istype(H)) return - if(H.back != src) - return - - if(sealed) - if(H.head) - var/obj/item/garbage = H.head - H.unEquip(garbage) - H.head = null - qdel(garbage) - - if(H.gloves) - var/obj/item/garbage = H.gloves - H.unEquip(garbage) - H.gloves = null - qdel(garbage) - - if(H.shoes) - var/obj/item/garbage = H.shoes - H.unEquip(garbage) - H.shoes = null - qdel(garbage) - - if(H.wear_suit) - var/obj/item/garbage = H.wear_suit - H.unEquip(garbage) - H.wear_suit = null - qdel(garbage) - - for(var/piece in list("helmet","gauntlets","chest","boots")) - toggle_piece(piece, wearer, ONLY_DEPLOY, user = user) + for(var/piece in list("helmet", "gauntlets", "chest", "boots")) + toggle_piece(piece, user, ONLY_DEPLOY) /obj/item/weapon/rig/dropped(var/mob/user) ..() for(var/piece in list("helmet","gauntlets","chest","boots")) - toggle_piece(piece, wearer, ONLY_RETRACT, 1, user = user) + toggle_piece(piece, user, ONLY_RETRACT, 1) if(wearer) wearer.wearing_rig = null wearer = null diff --git a/code/modules/clothing/spacesuits/rig/rig_verbs.dm b/code/modules/clothing/spacesuits/rig/rig_verbs.dm index f4769eddf0b..5214ea919f6 100644 --- a/code/modules/clothing/spacesuits/rig/rig_verbs.dm +++ b/code/modules/clothing/spacesuits/rig/rig_verbs.dm @@ -1,6 +1,5 @@ // Interface for humans. /obj/item/weapon/rig/verb/hardsuit_interface() - set name = "Open Hardsuit Interface" set desc = "Open the hardsuit system interface." set category = "Hardsuit" @@ -10,7 +9,6 @@ ui_interact(usr) /obj/item/weapon/rig/verb/toggle_vision() - set name = "Toggle Visor" set desc = "Turns your rig visor off or on." set category = "Hardsuit" @@ -44,7 +42,6 @@ visor.deactivate() /obj/item/weapon/rig/proc/toggle_helmet() - set name = "Toggle Helmet" set desc = "Deploys or retracts your helmet." set category = "Hardsuit" @@ -61,10 +58,9 @@ if(M.incapacitated()) return - toggle_piece("helmet",wearer, user = usr) + toggle_piece("helmet", usr) /obj/item/weapon/rig/proc/toggle_chest() - set name = "Toggle Chestpiece" set desc = "Deploys or retracts your chestpiece." set category = "Hardsuit" @@ -77,10 +73,9 @@ if(M.incapacitated()) return - toggle_piece("chest",wearer, user = usr) + toggle_piece("chest", usr) /obj/item/weapon/rig/proc/toggle_gauntlets() - set name = "Toggle Gauntlets" set desc = "Deploys or retracts your gauntlets." set category = "Hardsuit" @@ -97,10 +92,9 @@ if(M.incapacitated()) return - toggle_piece("gauntlets",wearer, user = usr) + toggle_piece("gauntlets", usr) /obj/item/weapon/rig/proc/toggle_boots() - set name = "Toggle Boots" set desc = "Deploys or retracts your boots." set category = "Hardsuit" @@ -117,10 +111,9 @@ if(M.incapacitated()) return - toggle_piece("boots",wearer, user = usr) + toggle_piece("boots", usr) /obj/item/weapon/rig/verb/deploy_suit() - set name = "Deploy Hardsuit" set desc = "Deploys helmet, gloves and boots." set category = "Hardsuit" @@ -143,7 +136,6 @@ deploy(wearer, usr) /obj/item/weapon/rig/verb/toggle_seals_verb() - set name = "Toggle Hardsuit" set desc = "Activates or deactivates your rig." set category = "Hardsuit" @@ -160,10 +152,12 @@ if(M.incapacitated()) return - toggle_seals(wearer) + if(flags & NODROP) + unseal(usr) + else + seal(usr) /obj/item/weapon/rig/verb/switch_vision_mode() - set name = "Switch Vision Mode" set desc = "Switches between available vision modes." set category = "Hardsuit" @@ -197,7 +191,6 @@ visor.engage() /obj/item/weapon/rig/verb/alter_voice() - set name = "Configure Voice Synthesiser" set desc = "Toggles or configures your voice synthesizer." set category = "Hardsuit" @@ -225,7 +218,6 @@ speech.engage() /obj/item/weapon/rig/verb/select_module() - set name = "Select Module" set desc = "Selects a module as your primary system." set category = "Hardsuit" @@ -265,7 +257,6 @@ to_chat(usr, "Primary system is now: [selected_module.interface_name].") /obj/item/weapon/rig/verb/toggle_module() - set name = "Toggle Module" set desc = "Toggle a system module." set category = "Hardsuit" @@ -307,7 +298,6 @@ module.activate() /obj/item/weapon/rig/verb/engage_module() - set name = "Engage Module" set desc = "Engages a system module." set category = "Hardsuit" From 1a53464a1c9a7e5da392a306e00046466c507f2a Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Wed, 20 Apr 2016 16:02:07 -0700 Subject: [PATCH 2/7] Make toggle_piece more robust --- code/modules/clothing/spacesuits/rig/rig.dm | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 445c196ed46..c9a8cbe13cb 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -741,11 +741,18 @@ to_chat(user, "You can't retract \the [use_obj] while the suit is sealed!") return - if(isliving(use_obj.loc)) - var/mob/living/L = use_obj.loc - use_obj.flags &= ~NODROP - L.unEquip(use_obj, 1) - use_obj.forceMove(src) + var/mob/living/to_strip + if(wearer) + to_strip = wearer + else if(isliving(use_obj.loc)) + to_strip = use_obj.loc + + if(to_strip) + to_strip.unEquip(use_obj, 1) + + use_obj.flags &= ~NODROP + use_obj.forceMove(src) + if(wearer) to_chat(wearer, "Your [use_obj] [use_obj.gender == PLURAL ? "retract" : "retracts"] swiftly.") else if(deploy_mode != ONLY_RETRACT) @@ -757,7 +764,8 @@ if(!wearer.equip_to_slot_if_possible(use_obj, equip_to, 0, 1)) use_obj.forceMove(src) else - to_chat(wearer, "Your [use_obj.name] [use_obj.gender == PLURAL ? "deploy" : "deploys"] swiftly.") + if(wearer) + to_chat(wearer, "Your [use_obj.name] [use_obj.gender == PLURAL ? "deploy" : "deploys"] swiftly.") use_obj.flags |= NODROP if(piece == "helmet" && helmet) From 9bc4c3afded3f36cd391034d2241dbbd9051614c Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Wed, 20 Apr 2016 17:52:06 -0700 Subject: [PATCH 3/7] Changelog~~~~ --- html/changelog.html | 2743 +++++++++++---------- html/changelogs/.all_changelog.yml | 2564 +++++++++---------- html/changelogs/AutoChangeLog-pr-4098.yml | 4 - html/changelogs/AutoChangeLog-pr-4141.yml | 4 - html/changelogs/AutoChangeLog-pr-4199.yml | 4 - html/changelogs/AutoChangeLog-pr-4201.yml | 7 - html/changelogs/AutoChangeLog-pr-4202.yml | 4 - html/changelogs/AutoChangeLog-pr-4203.yml | 4 - html/changelogs/AutoChangeLog-pr-4207.yml | 4 - html/changelogs/AutoChangeLog-pr-4208.yml | 4 - html/changelogs/AutoChangeLog-pr-4209.yml | 5 - html/changelogs/AutoChangeLog-pr-4215.yml | 4 - html/changelogs/AutoChangeLog-pr-4219.yml | 5 - html/changelogs/AutoChangeLog-pr-4221.yml | 4 - html/changelogs/AutoChangeLog-pr-4223.yml | 4 - html/changelogs/AutoChangeLog-pr-4233.yml | 4 - 16 files changed, 2693 insertions(+), 2675 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-4098.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4141.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4199.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4201.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4202.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4203.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4207.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4208.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4209.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4215.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4219.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4221.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4223.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4233.yml diff --git a/html/changelog.html b/html/changelog.html index 19264097e95..c2c1630cfe6 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -1,1349 +1,1394 @@ - - - - Paradise Station Changelog - - - - - - - -
- - - - -
-
Paradise Station
- -

- Visit our IRC channel: #crew on neko.sneeza.me -
- - - - - -
- Current Project Maintainers: -Click Here-
- Currently Active GitHub contributor list: -Click Here-
- Coders: ZomgPonies, DaveTheHeadcrab, tigercat2000, FalseIncarnate, AuroraBlade, Tastyfish, Crazylemon64, KasparoVy
- Spriters: FullOfSkittles
- Sounds:
- Main Testers: Anyone who has submitted a bug to the issue tracker
- Thanks to: Baystation 12, /tg/station, /vg/station, NTstation, CDK Station devs, FacepunchStation, GoonStation devs, the original SpaceStation developers and Radithor for the title image.
Also a thanks to anybody who has contributed who is not listed here :( Ask to be added here on irc.
-
Have a bug to report?
Visit our Issue Tracker.
- Please ensure that the bug has not already been reported and be as descriptive as possible about the circumstances under which the bug occurred. -
- - -
-

14 April 2016

-

Aurorablade updated:

-
    -
  • Removes the !!FUN!! of having headslugs gold core spawnable.
  • -
-

Fox McCloud updated:

-
    -
  • Added in sounds (instead of a chat-based message) for when airlocks are bolted/unbolted
  • -
  • Added in sound for when airlocks deny access
  • -
  • cutting/pulsing wires will play a sound
  • -
  • ups nuke ops game mode population requirement from 20 to 30
  • -
  • Adds in mining drone upgrade modules to increase their health, combat capability, or reduce their ranged cooldowns
  • -
  • Adds in mining drone "AI upgrade" a sentience potion that only works on mining bots
  • -
  • Mining bots should be less likely to shoot you when attacking hostile mobs
  • -
  • Killer tomatoes actually live up to their name now and are hostile mobs
  • -
  • Killer tomatoes are an actual fruit now; activate it in your hands to make them into a mob
  • -
  • Killer tomatoes are directly mutated from regular tomatoes instead of blood tomatoes
  • -
  • Increased the yield of regular tomatoes by 1
  • -
  • Tweak some stats on the killer tomato seeds
  • -
  • Fixes the blind player preference not doing anything
  • -
  • Adds portaseeder to R&D
  • -
  • Scythes will conduct electricity now
  • -
  • Mini hoes play a slice sound instead of bludgeon sound
  • -
  • Plant analyzer properly has a description and origin tech
  • -
  • Can have hulk+dwarf mutations together
  • -
  • Can have heat+cold resist together
  • -
  • Can only remotely view people who also have remote view
  • -
  • Fixes cold mutation not having an overlay
  • -
  • Hallucinations will no longer tick down twice as fast as they should nor will they spawn twice as many hallucinations as they should
  • -
  • Incendiary mitochondria no longer asks who you want to cast it on (it always is meant to be cast on yourself)
  • -
  • Fixes permanent nearsightedness even when wearing prescription glasses
  • -
-

KasparoVy updated:

-
    -
  • Head accessories now behave like facial hair: They will no longer be hidden by clothing items that BLOCKHEADHAIR (have the BLOCKHEADHAIR flag).
  • -
  • Wearing a piece of clothing that blocks head hair will no longer make head accessories (facial markings/horns/antennae) invisible until an icon update is triggered while the headwear is off.
  • -
-

Meisaka updated:

-
    -
  • law manager no longer freaks out with Malf law
  • -
-

Tastyfish updated:

-
    -
  • The /vg/ library computer interface has been ported, giving a much better use experience.
  • -
  • Books can now be flagged for inappropriate content.
  • -
-

TheDZD updated:

-
    -
  • Removes shitty Caelcode bees.
  • -
  • Hydroponics can now manage bee colonies, bees produce honeycombs that can be ground to obtain honey, a decent nutriment+healing chemical
  • -
  • Hydroponics can inject a queen bee with a syringe of a reagent to alter her DNA to match that reagent, meaning all honeycombs produced will contain that reagent in small amounts
  • -
  • Bees with reagents will attack with that reagent. It takes 5u of a reagent to give a bee that reagent.
  • -
  • Added the ability to make Apiaries and Honey frames with wood
  • -
  • Added the ability to make Royal Bee Jelly from 10 Mutagen and 40 Honey
  • -
  • Added the ability to make more Queen Bees from Royal Bee Jelly by using it on an existing Queen, to split her into two Queens
  • -
  • Removes some snowflakey mob behavior from bears, snakes and panthers.
  • -
  • Hudson is feeling punny.
  • -
  • Hostile mob AI should now be a bit more cost-efficient.
  • -
-

monster860 updated:

-
    -
  • Adds area editing, link mode, and fill mode to the buildmode tool
  • -
- -

12 April 2016

-

FalseIncarnate updated:

-
    -
  • Adjusting the setting of a vendor circuit board is no longer random, but instead provides a select-able list.
  • -
  • Vendor Circuit Board design moved from the Circuit Imprinter to the Autolathe, acid requirement replaced by metal.
  • -
  • Burnt matches can no longer light cigarettes, pipes, or joints.
  • -
-

Fethas updated:

-
    -
  • Nukes the cargo train code rscadd:Adds simple vehicle framework and converts secway/janicart/snowmobiles/bikes/cars/ambulance to it rscadd:Adds space speedbike, red and blue versions, yes you WILL need a spacesuit rscadd:Maps janicart and secway onto metastation (but not ambulance no pareamedic garage, no i am not mapping that)
  • -
  • You should now be able to operate on IPC eyes, SHOULD bugfix:hopefully surgery on diona works right
  • -
-

Fox McCloud updated:

-
    -
  • Adds in TraitorVamp; game mode that's essentially like TraitorChan, but with a Vampire instead of a Changeling
  • -
  • Vampires cannot use holoparasites
  • -
  • Malf AI will automatically lose if it exits the station z-level
  • -
-

Tastyfish updated:

-
    -
  • All cats can kill mice now.
  • -
  • E-N can't suffocate.
  • -
  • Startup time is now shorter.
  • -
  • Removed the Station Collision away mission from rotation, due to multiple conceptual and technical issues.
  • -
- -

07 April 2016

-

Crazylemon64 updated:

-
    -
  • Removes an offset from the advanced virus stealth calculation, causing viruses to be more stealthy than the sum of their symptoms.
  • -
  • Mulebots will now send announcements to relevant requests consoles on delivery again.
  • -
-

FalseIncarnate updated:

-
    -
  • Adds logic gates, for doing illogical things in a logical manner.
  • -
  • Adds buildable light switches, for all your light toggling needs.
  • -
  • Fixes a resource duplication bug with mass driver buttons.
  • -
-

Fethas updated:

-
    -
  • maybe makes them last longer...maybe..and fixes the event end message
  • -
-

Fox McCloud updated:

-
    -
  • Maps in the slime management console to Xenobio
  • -
  • Reduces Xenobio monkey box count from 4 to 2
  • -
  • Fixes weakeyes having a negligible impact
  • -
  • Can spawn friendly animals with a new gold core reaction by injection with water
  • -
  • Hostile animal spawn increased from 3 to 5 for hostile gold cores
  • -
  • Swarmers, revenants, and morphs no longer gold core spawnable
  • -
  • Fixes invisible animal spawns from gold core/life reactions
  • -
  • Adds tape to the ArtVend
  • -
  • Can no longer use sentience potions on bots
  • -
  • Added in Plasma Dust reagent, acquired by grinding plasma sheets; it's more toxic than regular plasma and generates plasma gas when spilled onto turfs.
  • -
  • Slimecore reactions now require plasma dust as opposed to dispenser plasma
  • -
  • Added in new Rainbow slime; inject with plasma dust to get a random colored slime. Acquire by having 100 mutation chance on a slime when it splits.
  • -
  • Monkey Recycler can produce different types of monkey cubes; change the cube type by using a multitool on the recycler
  • -
  • Epinephrine/plasma reagents changing mutation rate has been removed
  • -
  • Mutation chance is inherited from slime generation to slime generation as opposed to being purely random.
  • -
  • New reactions added for red and blue extracts: red generates mutator, which increases mutation chance, and blue generates stabilizer, which decreases mutation chance.
  • -
  • Slime glycerol reaction removed
  • -
  • Slime cells are now high capacity cells (more power than before)
  • -
  • extract enhancer increases the slime core usage by 1 as oppose to setting it to three
  • -
  • slime enhancer increases slime cores by 1 as opposed to setting the core amount to 3
  • -
  • Chill reaction lowers body temperature slightly more so it doesn't just wear off instantly
  • -
  • Reduces Xenobio plasma sheets from 8 to 3 and removes that pesky boombox
  • -
  • Processors no longer produce 1 more slime core than intended
  • -
  • Less blank/spriteless/empty foods from the silver core reaction
  • -
  • Virology mix reactions now use plasma dust as opposed to plasma
  • -
  • Statues can no longer move/attack people unless they're in total darkness or all mobs viewing them are blinded
  • -
  • statues are invincible to anything other than full out gibbing.
  • -
  • Statues flicker lights spell range increased
  • -
  • Blind spell no longer impacts silicons
  • -
  • Fixes statues being able to attack/move whenever they feel like it, regardless of client statues
  • -
  • Fixes blind spell impacting the statue
  • -
-

Tastyfish updated:

-
    -
  • Beepsky is no longer a pokemon.
  • -
  • pAI-controlled Bots now reliably speak human-understandable languages over the radio.
  • -
  • More floor blood for the blood gods. (Or rather, as much as there was supposed to be.)
  • -
-

tigercat2000 updated:

-
    -
  • Items in your off hand will now count towards access.
  • -
- -

02 April 2016

-

Crazylemon64 updated:

-
    -
  • Metal foam walls will now produce flooring on space tiles
  • -
  • Syringes will now draw water from slime people.
  • -
-

FalseIncarnate updated:

-
    -
  • Let's you know when your container is full when filling from sinks.
  • -
  • Prevents splashing containers onto beakers and buckets that have a lid on them.
  • -
  • Pill bottles can now be labeled with a simple pen.
  • -
  • Beakers/buckets (and pill bottles) now accept 26 character labels from pens.
  • -
-

Fethas updated:

-
    -
  • Various spells have had a tweak to stun/reveal/cast, some other number stuff...
  • -
  • Nightvision
  • -
  • harvest code is now in the abilites file.
  • -
  • New fluff objectives
  • -
  • Hell has recently remapped its blood transit system and you can now once again crawl through blood. We are sorry for the-GIVE US YOUR SOUL!
  • -
-

FlattestGuitar updated:

-
    -
  • Alcoholic beverages now have proper levels of ethanol in them. Good luck passing out after a beer.
  • -
-

Fox McCloud updated:

-
    -
  • Adds in the Lusty Xenomorph Maid Mob; currently admin only.
  • -
  • Fixes xenomorph brains having the wrong sprite, no origin tech, and incorrect name
  • -
  • removes xenomorph egg from hotel
  • -
  • upgrades are no longer needed to for the available toys in the prize vendor
  • -
  • Implements Advanced Camera Consoles. A type of camera console that function like AI's vision style. Non-buildable/accessible.
  • -
  • Adds in Xenobiology Advance Cameras. A type of camera console that functions like advanced cameras, but only works in Xenobiology areas; can move around slimes and feed them with the console as well. Also non-buildable/accessible (for now).
  • -
  • Adds in cerulean slime reaction that generates a single use blueprint. On use it colors turfs a lavender color
  • -
  • Adds disease1 outbreak event
  • -
  • Adds appendecitis event
  • -
  • Roburgers now properly have nanomachines in them
  • -
  • Re-adds nanomachines
  • -
  • Experimentor properly generates nanomachines instead of itching powder
  • -
  • Fixes big roburgers having a healing reagent in them
  • -
  • Adds nanomachines to poison traitor bottles
  • -
  • Tajarans can now eat mice, chicks, parrots, and tribbles
  • -
  • Vulpkanin and Unathi can now eat mice, chicks, lizards, chickens, crabs, parrtos, and tribbles
  • -
  • fixes spawned changeling headcrab behavior
  • -
-

KasparoVy updated:

-
    -
  • Incisions made at the beginning of embedded object removal surgery can now be closed in the same procedure.
  • -
-

ProperPants updated:

-
    -
  • Maint drones have magboots.
  • -
  • Removed plastic from maint drones. Literally useless for station maintenance.
  • -
  • Increased starting amounts of some materials for maint drones and engi borgs.
  • -
  • Reduced the number of lines taken by Engineering cyborgs calling on materials stacks.
  • -
  • Operating tables can be deconstructed with a wrench.
  • -
  • Fixed and shortened description of metal sheets.
  • -
-

Tastyfish updated:

-
    -
  • Bots can now be controlled by players, by opening them up and inserting a pAI. *beep
  • -
  • MULEbots can now access the engineering destination.
  • -
  • All MULEbot destinations should now have the correct load/unload direction, meaning the crates won't be dumped inside the flaps.
  • -
  • Diagnostic HUD's now give health and status information about bots.
  • -
  • MULEbot rampage blood tracks are now rendered correctly and handle UE traces as appropriate.
  • -
  • Bots should (hopefully) lag the game less now.
  • -
  • Beepsky contains 30% more potato.
  • -
  • Action progress bars are now smooth.
  • -
  • Clicking a filled inventory slot's square with an open hand now clicks the item in the slot.
  • -
  • Status displays now display the time when in Shuttle ETA mode and no shuttle activity is happening.
  • -
  • Shuttle ETA countdowns on status displays are now amber.
  • -
  • pAI's can now use the PDA chatrooms.
  • -
  • Adds treadmills to brig cells, to give the prisoners something productive to do.
  • -
-

TheDZD updated:

-
    -
  • A lot of the guns and armor in the station collision, space hotel, academy, and wild west away missions have been removed/replaced.
  • -
  • Removes that fucking facehugger from station collision.
  • -
-

tigercat2000 updated:

-
    -
  • Virus2 has been removed.
  • -
  • Virus1 is back. Viva la revolution.
  • -
  • You can now have up to 20 characters.
  • -
- -

26 March 2016

-

Fox McCloud updated:

-
    -
  • Adds in dental implant surgery. Implant pills into people's teeth.
  • -
  • Major rebalance and Shadowling update (https://github.com/ParadiseSS13/Paradise/pull/3986 for details). In general, Shadowlings can no longer enthrall or engage in Shadowling like behavior, pre-hatch. Post-hatch, shadowlings are much more powerful, with a ride array of New abilities such as extending the shuttle or making thralls into lesser shadowlings. Shadowling gameplay should not revolve almost entirely around darkness, as opposed to pre-hatch shenanigans.
  • -
  • Robotics now has a "sterile" surgical area for performing augmentations
  • -
  • Adds the FixOVein and Bone Gel to the autolathe
  • -
  • ensures all surgical tools have origin tech on them; lowers origin tech on FixoVein
  • -
-

KasparoVy updated:

-
    -
  • Slime People can now wear underwear.
  • -
  • Slime People can now wear undershirts.
  • -
-

TheDZD updated:

-
    -
  • NT has removed trace amounts of a highly-addictive substance from the "100% real" cheese used in cheese-flavored snacks. As a result, incidence rates of crewmembers becoming addicted to Cheesie Honkers should reduce to zero.
  • -
  • After receiving complaints about crewmembers often being unable to physically function without a back-mounted barrel of coffee, NT has replaced station all sources of coffee on the station, including coffee beans themselves with a largely decaffeinated version. It was funny the first time almost every crewmember aboard the NSS Cyberiad was lugging around their own oil barrel filled with coffee, it wasn't so funny, nor good for productivity the eighteenth.
  • -
- -

25 March 2016

-

Crazylemon64 updated:

-
    -
  • You now will actually have the correct `real_name` on your DNA.
  • -
  • No more roundstart runtimes regarding IPC hair.
  • -
  • Mitocholide rejuv will work more usefully now.
  • -
  • Limbs and cyborg modules will no longer appear in your screen.
  • -
  • Cyborg module icons are now persistent throughout logging in and out.
  • -
  • Various cyborg modules, like engineering, now use the proper icon.
  • -
-

FlattestGuitar updated:

-
    -
  • Adds confetti grenades.
  • -
-

Fox McCloud updated:

-
    -
  • Fixes Sleeping Carp combos not having an attack animation
  • -
  • Fixes several chems not properly healing brute/burn damage, consistently, as intended
  • -
-

KasparoVy updated:

-
    -
  • Unbranded heads and groins no longer invisible.
  • -
  • Zeng-hu left leg will now be in line with the body when facing south.
  • -
- -

22 March 2016

-

Crazylemon64 updated:

-
    -
  • Repairs all sorts of eldritch occurences that happen when you put an organic head on an IPC body, as well as some decapitation bugs
  • -
  • Makes heads keep hair on removal
  • -
  • Amputated limbs from a DNA-injected individual now will keep their appearance of the DNA-injected person
  • -
  • Wounds will vanish on their own now
  • -
  • Admins now have an "incarnate" option on the player panel when viewing ghosts for quick player instantiation
  • -
  • Fixes a runtime regarding failing a limb reconnection surgery
  • -
  • Copying a client's preferences now overrides the previous mob's DNA
  • -
  • A DNA injector is now more thorough, and affects the DNA of mobs' limbs and organs
  • -
  • DNA-lacking species can no longer be DNA-injected
  • -
  • Brains are now labeled again
  • -
  • Splashing mitocholide on dead organs will make them live again.
  • -
  • The body scanner now detects necrotic limbs and organs.
  • -
  • pAIs and Drones are now affected by EMPs and explosions while held.
  • -
-

Fethas updated:

-
    -
  • Adds a surgery for infection treatmne/autopsys that is simply cut open, retract, cauterize
  • -
  • fixes a dumb error in internal bleeeding surgerys
  • -
  • Chaos types no longer random teleport, but will make the target hallucinate everyone looks like the guardian.
  • -
-

FlattestGuitar updated:

-
    -
  • Adds a snow, navy and desert military jacket.
  • -
-

Fox McCloud updated:

-
    -
  • Removes random 1% chance to heal fire damage
  • -
  • Removes passive healing from resist heat mutation
  • -
  • Regen mutation heals every cycle (albeit less, on average), but doesn't cost hunger
  • -
  • Fixes not being able to speak over xeno common or hivemind when you receive the Xeno hive node
  • -
  • Adds in the ability to transfer non-locked metal+glass only designs from the protolathe to autolathe
  • -
  • Changes Outpost Mass Driver to prevent accidental spacings
  • -
  • Shadow people no longer dust on death, are rad immune+virus immune, and can be cloned. Slip immunity removed
  • -
  • Shadowlings no longer get hungry or fat and no longer dust on death
  • -
-

KasparoVy updated:

-
    -
  • The ability to change your head, torso and groin as an IPC in the character creator. Non-IPCs cannot access the parts.
  • -
  • Head, torso and groin sprites for all mechanical limb/bodypart brands but Morpheus and the unbranded ones (since those already exist) from Polaris.
  • -
  • Faux-eye optics for non-Morpheus heads.
  • -
  • The ability to change optic (eye) colour if you've got a non-Morpheus head.
  • -
  • The ability to choose human hair styles (wigs) and facial hair styles (postiche) with non-Morpheus heads. Non-Morpheus heads cannot choose screens. Conversely, Morpheus heads cannot choose wigs or facial hair.
  • -
  • Two hair styles from Polaris.
  • -
  • The ability for IPCs to wear undergarments (shirts and trousers).
  • -
  • Antennae (colourable) for IPCs.
  • -
  • IPC monitor adjustment verb will now adjust optic colour if the head is non-Morpheus.
  • -
  • Combat/SWAT boots can now be toecut and jacksandals can't.
  • -
  • ASAP fix to what would've broken the ability to configure prostheses in character creation.
  • -
  • Adjusted masks no longer block CPR (including bandanas).
  • -
  • You can no longer run internals from adjusted breath masks (or airtight adjustable masks in general).
  • -
-

Regens updated:

-
    -
  • Robotic hearts will now properly give the mob a heart attack instead of just damaging it when EMP'd
  • -
  • Assisted organs will now also take damage from EMP's
  • -
  • Internal robotic and assisted organs will now actually take damage from EMP's
  • -
-

Tastyfish updated:

-
    -
  • Adds PDA chatrooms. Post memes! Talk to your fellow collaborators! Get caught!
  • -
  • You can now set the PDA messenger to automatically scroll down to new messages.
  • -
  • Pet collars now act as death alarms and can have ID's attached to them.
  • -
  • All domestic animals can now wear collars.
  • -
  • You can now make video cameras at the autolathe.
  • -
-

TheDZD updated:

-
    -
  • Fixes an instance of old code being so incredibly, unbelievably, makes-me-want-to-stab-myself-in-the-eye-edly idiotic.
  • -
-

TravellingMerchant updated:

-
    -
  • Kidan have new sprites!
  • -
-

tigercat2000 updated:

-
    -
  • Nukeops now have an assault pod, they can use it for 30 TC. Loud and mean.
  • -
  • Lighting overlays can no longer go below 0 lum_r/g/b
  • -
  • Shuttles will work with lighting better.
  • -
  • Wizards can no longer teleport to prohibited areas such as Central Command.
  • -
- -

16 March 2016

-

Crazylemon64 updated:

-
    -
  • Being in godmode now makes you immune to bombs
  • -
  • Science members now get compensated when they ship tech disks to centcomm.
  • -
  • Science crew are no longer paid when they "max" research.
  • -
  • Roboticists now get credit for making RIPLEYs and Firefighters
  • -
  • Slime people can now regrow limbs on a more lax nutrition requirement
  • -
  • Enhances the nutripump+ to let slime people regrow limbs with it active
  • -
  • Skeletons, slime people, IPCs, and Diona no longer leave blood when hit
  • -
  • Rejuvenating a slime person will no longer clog up their "blood"
  • -
  • Slime people will now regenerate "blood" from having water in their system
  • -
  • The decloner can now be created again
  • -
  • Environment smashing mobs can now destroy girders.
  • -
-

DaveTheHeadcrab updated:

-
    -
  • Removes the check for species on the update_markings proc.
  • -
-

FalseIncarnate updated:

-
    -
  • Xeno-botany is now more user-friendly, and less random letters/numbers.
  • -
  • Hydroponics now has a connector hooked up to the isolation tray and a new connector in their back room for those strange plants that like spewing plasma or eating nitrogen.
  • -
  • You can now (finally) build the xeno-botany machines, and science can print off their respective boards.
  • -
-

Fethas updated:

-
    -
  • Syringes are no longer sharp
  • -
  • byond likes direct pathing so item/organ/internal not item/organ even if it shouldn't be in the internal_organs list. This was preventing the list from doing stuff correctly.
  • -
  • fixed ipc organ manipulation surgery, you can now insert a replacment ipc organ directly instead of needing a screwdriver in your main hand
  • -
  • nanopaste now will repair organs with robotic >= 2 instead of > 2 cuase i am an idiot
  • -
  • Fix, hopefully, for a runtime for clientless mobs whos head are cut off...
  • -
  • Hopefully fixes issues with diona eyes
  • -
  • Though shalt not eat robotic organs..including cybernetic implants..
  • -
  • ITS SURGERY_STEP/DETHRALL NOT SURGERY_STEP/INTERNAL/DETHRALL
  • -
-

FlattestGuitar updated:

-
    -
  • Adds three new synthanol drinks
  • -
  • Drinking synthanol is now a bad idea if you're organic
  • -
  • A glass of holy water now looks like normal water
  • -
-

Fox McCloud updated:

-
    -
  • Adds in drink fizzing sound
  • -
  • Drink/bartender recipes use this new fizzing sound in addition to a few other recipes
  • -
  • Adds in a fuse burning sound
  • -
  • Bath salts, black powder, saltpetre, and charcoal use this sound now
  • -
  • Adds in a matchstrike+burning sound
  • -
  • Lighting a match triggers this new sound
  • -
  • Adds in scissors cutting sound
  • -
  • Cutting someone's hair uses this new sound
  • -
  • Adds in printer sounds
  • -
  • printing off papers from various devices typically uses these sounds
  • -
  • Adds computer ambience sounds
  • -
  • black box recorder and R&D core servers both play this sound at random rare intervals
  • -
  • Reduces the tech level (and requirement) for nanopaste
  • -
  • Reduces the tech level (and requirement) for the plasma pistol
  • -
  • Removes Nymph and drone tech levels
  • -
  • Reduces tech levels on the flora board
  • -
  • Adds tech level requirements to mech sleepers, mech syringe guns, mech tasers, and mech machine guns
  • -
  • Increases tech cost of the decloner
  • -
  • Removes the pacman generators
  • -
  • Removes emitter
  • -
  • Removes flora machine (functionless anyway)
  • -
  • Removes the pre-spawned nanopaste
  • -
  • Removes space suits
  • -
  • Removes excavation gear
  • -
  • Replaces the soil with actual hydroponic trays (more aesthetic than anything)
  • -
  • Removes most external asteroid access from the station
  • -
  • Excavation storage is now generic science storage
  • -
  • removed the plasma sheet
  • -
  • Fixes augments not showing up in R&D unless specifically searched for
  • -
  • Fixes some augments being unavailable in mech fabs
  • -
  • Fixes augments having no construction time
  • -
  • Fixes xenos not gaining plasma when breathing in plasma
  • -
  • Fixes plasma reagent not generating plasma for a person
  • -
  • Screaming has different sounds based on being male or female
  • -
  • Implements Goon's screaming sounds.
  • -
  • Screaming tone is now based on age of character instead of being random
  • -
  • Ups the cooldown on screaming from 2 seconds to 5 seconds
  • -
  • Removes chance for Whilhelm scream
  • -
  • Borgs can now scream
  • -
  • Monkey's now have a unique screaming sound
  • -
  • IPCs now scream like cyborgs
  • -
  • Updates slot machines to have higher jackpots and more payouts with more interesting sounds
  • -
  • Adds X-Ray, Thermal, Anti-tun, and Reviver implants to the nuke ops uplink (augments come with one auto-implanter) rcsadd: Adds in augment auto-implanter, which inserts and implant without surgery
  • -
  • tweaks a large number of chems; behaviors are largely retained, but new flavor messages, probabilities, etc may be present; overall, you can expect chems to do the same thing
  • -
  • Tabun re-replaced with Sarin rcsadd: New reagent: cholesterol: if overdosed on, it can cause a heart attack--fatty foods, cheese, eggs, and some meats all produce cholesterol in your body.
  • -
  • Mixing Sarin, Meth, or Cyanide will poison in a very small area of the reaction if you're not on internal OR not wearing a gas mask
  • -
  • Chemist warddrobe now has two gas masks
  • -
  • Teslium will now impact synthetics AND organics
  • -
  • Fixes facehuggers hugging already infected people
  • -
  • Fixes facehuggers hugging people while dead
  • -
  • Fixes Embryo's developing twice as fast as they should
  • -
  • Fixes up some behaviors with xeno eggs
  • -
  • Xeno acid can now melt through floors and the asteroid
  • -
  • Xeno's now play the gib sound when actually gibbed
  • -
  • Implements Changeling headcrabs/headspiders
  • -
  • Fixes xenos not throwing their organs when gibbed
  • -
  • Fixes swallowed mobs not being ejected when a human is gibbed
  • -
  • Adds in spider eggs reagent, an infectious reagent that requires surgery to correct
  • -
  • Fixes EMPs causing eye implant users to be permanently blind
  • -
  • Increases bag of holding's storage capacity
  • -
  • Removing a heart no longer kills the patient instantly, but induces a heart attack
  • -
  • Demon hearts will not work
  • -
  • Should now actually be able to re-insert hearts
  • -
  • Reworks addictions to bettter differentiate them betweeen overdosing and make them more realistic.
  • -
  • changes which chems are addictive, currently, the follow reagents are now addidctive: meth, crank, krokodil, bath salts, space drugs, perfluoradecalin, omnizine, coffee, nicotine, fliptonium, ultra lube, surge, fake cheese, weird cheese, ephedrine, diphenhydramine, teporone, and morphine
  • -
  • sleepers help you recover from addiction faster
  • -
  • Can now make cable coils in autolathes
  • -
  • Fixes the slot machine announcements not displaying properly
  • -
-

Tastyfish updated:

-
    -
  • The super fart mutation now gives you a spell-like ability instead of augmenting the emote.
  • -
  • Vampire abilities are now in their own Vampire tab, as well being action buttons at the top, like spells.
  • -
  • Cloning a vampire no longer makes them lose their abilities.
  • -
  • Vampires can no longer hypnotize chaplains.
  • -
  • Being a full vampire (500+ total blood) actually makes you immune to holy water reliably now.
  • -
  • Some old away missions are back: Academy, Black Market Packers, Space Hotel, Station Collision, and Wild West. Go out and round up some hostiles!
  • -
  • Shuttle consoles now pair up to the engineering, mining, research, or labor shuttle when built or used before pairing, as long as the shuttle is near the console, or the shuttle is moved to be nearby.
  • -
-

monster860 updated:

-
    -
  • Mining station now has a podbay.
  • -
  • Ore scooping module for the spacepod.
  • -
  • Three mining lasers for spacepod: Basic, normal, and burst.
  • -
  • Shooting weapons south or west of spacepod will actually hit adjacent targets now, and won't shoot through walls anymore.
  • -
-

taukausanake updated:

-
    -
  • Mice can now be picked up like diona
  • -
- -

08 March 2016

-

Crazylemon64 updated:

-
    -
  • Slime people are now more vulnerable to low temperatures.
  • -
  • Slime people are able to slowly regrow limbs at a high nutrition cost.
  • -
  • Slime people now slowly shift color based on reagents inside of them - disabled by default, toggle it with an IC verb
  • -
  • Slime people's cores are more vulnerable to damage
  • -
  • Species-related abilities now properly are removed - no more vox hair stylists, unfortunately.
  • -
-

Fethas updated:

-
    -
  • the nest buckle now looks for the right organ path
  • -
  • Fixed some sprites.
  • -
  • No more putting no drops in rechargers,
  • -
-

Fox McCloud updated:

-
    -
  • Implement's goon's gibbing sound
  • -
  • Implement's goon's gibbing sound for robots/silicons
  • -
  • Removes old gibbing sound
  • -
-

Spacemanspark updated:

-
    -
  • Lazarus Injector's can now be emagged to activate their special features, alongside using EMPs on them.
  • -
-

Tastyfish updated:

-
    -
  • Mimes now have a new ore, Tranquillite, used to bring peace and quiet to the station.
  • -
  • There are also permanent invisible walls and silent floors that can be made from tranquillite.
  • -
  • The Recitence mech is now buildable!
  • -
  • The Recitence mech is now playable!
  • -
  • Mid-round selection for various creatures and antagonists now consistently asks permission.
  • -
-

TheDZD updated:

-
    -
  • Adds justice helmets with flashing lights and annoying sirens.
  • -
  • Adds crates containing said helmets.
  • -
  • Also includes a version of the helmet that can only be spawned by admins, and just has a single red light in the center instead of the stereotypical police blinkers.
  • -
-

monster860 updated:

-
    -
  • Space pod transitions are now fixed.
  • -
- -

07 March 2016

-

Crazylemon64 updated:

-
    -
  • People with VAREDIT can now write matrix variables
  • -
  • People with VAREDIT can now modify path variables
  • -
  • Refactors the variable editor code somewhat.
  • -
  • The buildmode area tool now shows reticules of what you've selected.
  • -
  • Switching mobs while using the buildmode tool no longer screws up your UI.
  • -
  • Refactors buildmode so it's no longer a special-case system.
  • -
  • Adds a copy mode to build mode, which lets you duplicate objects.
  • -
  • Any mob in buildmode can work at the fastest possible rate.
  • -
  • Fixed a problem where the icons of a person would not correctly update when changing gender.
  • -
  • One's hairstyle only adjusts on gender change if it's incompatible with your new gender.
  • -
  • Fixed a bug where a person's icon would only be updated if their sprite had a new layer added or removed.
  • -
  • You no longer lose your name when monkeyized and reverted - you'll still look like a monkey while you're a monkey, though.
  • -
  • Your organs will now match your gender when you are cloned.
  • -
  • Skeletons (when a body rots) no longer retain a fleshy torso.
  • -
  • Putting people in an active cryotube now produces the message on insertion, rather than release.
  • -
  • An EMP'd cloning pod will now display its sprites correctly.
  • -
-

FalseIncarnate updated:

-
    -
  • Water Balloons can be filled from more sources than just beakers and watertanks.
  • -
-

Fox McCloud updated:

-
    -
  • Fixes the "yeah" glasses so the sound doesn't vary and a message is displayed, on use
  • -
  • Noir mode only activates when the glasses are equipped to your actual eyes
  • -
  • Noir Glasses mode can be toggled on or off (defaults to off)
  • -
  • Mimes can no longer use spells and continue speaking
  • -
  • Mime abilities are now spells with proper icons
  • -
  • Mime wall now last 30 seconds, up from 5
  • -
  • forecfields/invisible walls now block air currents
  • -
  • Adds the Sleeping Carp scroll to the uplink for 17 TC
  • -
  • Fixes Shadowlings being able to use guns
  • -
  • Fixes sleeping carp scroll users being able to use guns
  • -
  • Fixes the Experimentor throwing one item at a time
  • -
  • Experimentor menu now automatically refreshes after use
  • -
  • Lowers surgery times across the board
  • -
  • Removes scalpels causing 1 damage on successful surgery
  • -
  • Removes random chance to fracture ribs on a successful surgery
  • -
  • Mining drills now have an edge
  • -
-

KasparoVy updated:

-
    -
  • Jackets who have the verb available but are not intended to be adjusted will not have the action button available.
  • -
  • You can now adjust breath masks while buckled into beds and chairs.
  • -
  • Known issues with adjusted jackets using the wrong sprites.
  • -
  • Blueshield coat in hand and item icons.
  • -
  • Hulks now rip apart adjustable and droppable jackets. The items stored in the jackets get dropped on the ground.
  • -
-

Tastyfish updated:

-
    -
  • Infrared emitters can now be rotated while already in an assembly via the UI popup.
  • -
  • The infrared emitter can no longer be hidden inside of boxes and still work.
  • -
  • The beach now has a border and is splashier.
  • -
  • Gives Psychiatrist a paper bin, clipboard, and multicolored pen.
  • -
  • Gives the Librarian / Jouralist a multicolored pen.
  • -
  • Gives the NT Representative a clipboard.
  • -
  • The ethanol-based neurotoxin drink is now called Neuro-toxin to avoid being confused with the deadly toxin.
  • -
-

VampyrBytes updated:

-
    -
  • Fixes emotes ending with s needing 2. Emotes now work with grammatical options eg ping or pings, squish or squishes
  • -
  • Updated emote help with missing emotes. Help will also show any species specific emotes for your current species
  • -
- -

26 February 2016

-

FalseIncarnate updated:

-
    -
  • Chocolate can now make you fat, as expected.
  • -
-

Fox McCloud updated:

-
    -
  • stamina damage now regenerates slightly faster
  • -
  • Adds in whetstones for sharpening objects
  • -
  • Kitchen vendor starts off with 5 salt+pepper shakers
  • -
  • Can now point while lying or buckled
  • -
  • Fixes Capulettium Plus not silencing
  • -
  • Fixes slurring, stuttering, drugginess, and silences last half of what they should
  • -
-

KasparoVy updated:

-
    -
  • Jackets that start open are recognized as actually being open already now. This fixes a bug with certain items that don't have an open state, or cases where it ended up giving an item the wrong icon (one that didn't exist)
  • -
-

Spacemanspark updated:

-
    -
  • Fixes synthetics from giving off the proper message in the chat box when using the *yes and *no emotes.
  • -
-

Tastyfish updated:

-
    -
  • Wheelchairs, janicarts, and ambulances can now go through doors according to the user's driver's access.
  • -
- -

24 February 2016

-

Crazylemon64 updated:

-
    -
  • The defib should be more reliable on people who have ghosted
  • -
  • The defib will now give a message if the ghost is still haunting about
  • -
  • Attacking someone with an accessory will now let you put things on them without having to strip them.
  • -
  • Borers will now properly detach upon death of a mob they are controlling
  • -
  • Borers can now see their chemical count while in control of a mob
  • -
  • Borers can now silently communicate with their host - this is not available to the host until the borer has either begun to communicate, or has taken control at least once - this is to avoid spoiling that the borer exists
  • -
  • Borers won't be able to talk out loud inside of a host, by default - they can remove this safeguard with a verb under their borer tab. Borer hivespeak is unaffected.
  • -
  • Borers infesting and hiding are now silent.
  • -
  • Made borer's chem lists more nicely formatted
  • -
  • No more superspeed attacking simplemobs
  • -
  • New players now show up properly under the "who" verb when used as an admin
  • -
  • Mining drones will now automatically collect sand lying around
  • -
  • RIPLEYs can now drill asteroid turfs for sand
  • -
  • You can now load exosuit fuel generators with items containing their material - this means you can fuel yourself off of ores, but this will be highly inefficient and cost you mining points later on, as you can't take fuel back out.
  • -
  • You can now load the fuel generators from an ore box.
  • -
  • The plasma generator now produces 3x as much power from the same amount of fuel - this lets it even remotely compete with the uranium generator.
  • -
  • You can now light cigarettes off of burning mobs.
  • -
  • Exosuit tracking beacons now fit in boxes - prior, they were far too large for even a backpack, as they shared the same size as all other mecha equipment
  • -
  • Miners can now collect ore by walking over it with an ore satchel on.
  • -
-

FalseIncarnate updated:

-
    -
  • Adds prize tickets as a replacement for physical arcade prizes.
  • -
  • Adds a buildable prize counter to exchange tickets for prizes.
  • -
  • Adds a bike. Despite what Prof. Oak might claim, you can ride it indoors.
  • -
  • Adds colorful wallets, for that old school arcade pride.
  • -
  • Fixes accidental removal of plump helmet biscuit recipe.
  • -
  • Temporarily adds a prize counter to the bar (Cyberiad) or dorms (MetaStation), and adds a max upgrade one to the Ninja Holding Area (Cyberiad z2)
  • -
  • Fixes Metastation. Seriously fixed a lot, just read the PR description for the full list.
  • -
-

FlattestGuitar updated:

-
    -
  • Adds IPC alcohol and a few derivative drinks
  • -
  • IPCs can now drink and be fed from glasses
  • -
-

Fox McCloud updated:

-
    -
  • Laser eyes mutation no longer drains nutrition
  • -
  • splits the EMP kit into two things: the standard EMP kit (2 grenades and an implant), and the EMP flashlight by itself
  • -
  • nerfs heart attacks so they do less damage
  • -
  • Pickpocket gloves now put the item you strip into your hands as opposed to the floor
  • -
  • Picketpocket gloves can now silently strip accessories
  • -
  • Pickpocket gloves will no longer give a message for messing up a pickpocket
  • -
-

KasparoVy updated:

-
    -
  • Adjusting masks while they are not on the face will no longer turn off internals.
  • -
  • Adjusting masks while they are not on the face will now cause the mask to hide/reveal the wearer's identity the next time it's worn as intended.
  • -
  • Adds the ability to open/close bomber jackets.
  • -
  • Adds a security bomber jacket. This jacket inherits the protection and storage capabilities as a standard Security vest with additional bomber jacket benefits.
  • -
  • Adds UI button in top left of screen for jacket adjustment.
  • -
  • Replaces the standard bomber jacket in the Pod Pilot bay with the Security version.
  • -
  • Centralizes jacket/coat adjustment handling.
  • -
  • All jackets start closed by default.
  • -
  • Geneticist duffelbag on-mob sprite (for all species).
  • -
  • Vox-fitted backpacks, satchels, ERT backpacks, duffelbags and defib unit.
  • -
  • Refactors back-item icon generation.
  • -
  • Typo in the description of Santa's sack.
  • -
  • Missing punctuation and gender macros in the description of the bag of holding.
  • -
  • The tweak to back-icon generation fixes a bug where the wrong sprite name was being used to generate back-item icons.
  • -
-

PPI updated:

-
    -
  • Adds the ability to hide papers in vents. You can now leave a romantic love letter, exchange information in secret, or hide papers infused with the power of nar'sie from sight.
  • -
-

Regen1 updated:

-
    -
  • Adds the Immolator laser gun, a modified laser gun with 8 shots that will ignite mobs, can be made in R&D
  • -
-

Spacemanspark updated:

-
    -
  • Adds *yes and *no emotes to Synthetics. Glory to Synthetica.
  • -
-

Tastyfish updated:

-
    -
  • The PDA system has been completely redone behind the scenes! It should be functionally similar, although there is now a Home and Back button at the bottom as appropriate.
  • -
  • All of the heads now have multicolored pens.
  • -
  • EngiVend now has 10 camera assemblies.
  • -
  • Borgs can now use vending machines.
  • -
  • There are now picture frames that can be made from the autolathe or wood planks for papers, photos, posters, and canvases!
  • -
-

pinatacolada updated:

-
    -
  • Makes the Protect Station AI law board no longer consider people that damage the station crew, instead of human
  • -
-

ppi updated:

-
    -
  • When revealed Revenants will not be able to move at the maximum move speed, nor be able to pass through any solid object, like walls, windows, grills, computers and mechs.
  • -
- -

13 February 2016

-

Crazylemon64 updated:

-
    -
  • Relaxes the check on what atoms you can follow to any movable atom
  • -
  • Mages are now more ragin
  • -
  • Admins can now adjust the total number of wizards at runtime by tweaking either max_mages, or players_per mage
  • -
-

DaveTheHeadcrab updated:

-
    -
  • Adds new worn icons for duffelbags to better reflect their size, compliments of WJohn at /tg/
  • -
-

FalseIncarnate updated:

-
    -
  • Adds burritos, made from cutlets, beans, rice, capsacin oil (hotsauce), cheese, and flat dough (because we lack proper tortillas) in the microwave.
  • -
  • Adds chimichangas. You know you want a deep-fried burrito.
  • -
-

Fox McCloud updated:

-
    -
  • Updates some spell icons with better/higher quality icons
  • -
  • Updates unarmed attacks to allow for more customization
  • -
  • Updates martial arts so they factor in specie's attack messages and sounds
  • -
  • Re-balances Sleeping Carp fighting style
  • -
  • Re-balances Bo Staff
  • -
  • Rebalances Golem: they should now be spaceproof, fire+cold proof, rad proof, virus immune, clonable, parapen+syringe gun immune, deal increased melee damage. Their armor has been reduced to 55 melee across the board, their slip immunity removed, pain immunity removed, and they're slightly slower
  • -
  • Fixes Ei Nath generating two brains
  • -
  • Ensures the Necromatic Stone generates actual skeletons
  • -
  • Can now strip PDA/IDs from Golems
  • -
  • Fixes sleeping carp grab not being an instant aggressive grab
  • -
  • Fixes an exploit with declaring war on the station
  • -
-

KasparoVy updated:

-
    -
  • Orange and purple bandanas for all station species.
  • -
  • The ability to colour bandanas with a crayon in a washing machine.
  • -
  • Refactors the bandana adjustment system.
  • -
  • Minor adjustments to Tajaran and Unathi bandana east/west sprites.
  • -
  • Adjusting a bandana will now take if off of your head/face and put it in an available hand. If both hands are available, it goes in the selected hand.
  • -
  • Adjusting a coloured bandana will no longer revert it to the original coloured icons anymore.
  • -
  • Adjusting a bandana from mask-style to hat-style means the bandana won't obscure your identity anymore.
  • -
  • Greys now use re-positioned smokeables. They no longer smoke out the eyes.
  • -
-

TheDZD updated:

-
    -
  • Fixes spacepods being able to shoot through walls.
  • -
  • Lowers spacepod weapons fire delay.
  • -
  • Increases spacepod weapons energy costs.
  • -
  • Makes spacepods move at speeds not rivaling those of photon beams. They are now a hair bit faster than a person with a jetpack.
  • -
  • Reduces battery costs for spacepod movement.
  • -
- -

10 February 2016

-

Crazylemon64 updated:

-
    -
  • The cloner now checks for NO_SCAN on the brain when scanning - unclonable species are now truly unclonable. You are still able to revive them with a brain transplant and a defib, however.
  • -
  • A tier-4 DNA scanner linked to a cloning system will now be able to reproduce a body from a brain's DNA, in event of the original corpse being gibbed or similar.
  • -
  • Species with organic limbs and NO_BLOOD will no longer bleed (though still on hit - write that off as "bone powder")
  • -
  • Skeletons now lack internal organs, except for the runic mind which exists in their head - an analogue for the brain
  • -
  • Skeletons that drink milk will be regenerated at a moderate pace, have a small chance of mending bones, and will praise the great name of mr skeltal
  • -
  • Adds a reagent system for species reacting to specific reagents
  • -
  • Slime People can now select from all human hairstyles, and their "hair" will be tinted a shade of their body.
  • -
  • Increases the frequency of the cortical borer event.
  • -
  • People with borers cannot commit suicide - this applies to a controlling borer, too.
  • -
  • Borers can no longer overdose their hosts.
  • -
  • Borers can now inject Saline-Glucose, Spaceacillin, Hydrocodone, Mitocholide, Salbutamol, Capulettium+, and Charcoal. Styptic was removed, as it's pathetic at healing when directly injected. Salicyclic acid was removed too, as its functionality is duplicated by both hydrocodone and saline-glucose.
  • -
  • A mind trapped by a cortical borer can now understand things it could understand when normally in its body.
  • -
  • Changes chemistry's welding tank to a wall-mounted version, to increase the room available.
  • -
  • You can now gib butterflies and lizards with a knife
  • -
  • Ghosts can now follow mecha
  • -
  • You can now access an R&D console by emagging it - it did nothing before.
  • -
  • Walls will now properly smooth and show damage.
  • -
  • Fixes the dialog that occurs when the AI shuts off to actually do what it says it does
  • -
-

Fox McCloud updated:

-
    -
  • Fixes not being able to attach IEDs to beartraps
  • -
  • Can no longer spamclick someone to death using headslamming on a toilet/urimal
  • -
  • Toilet/urinal headslamming now plays a sound
  • -
  • Toilet headslamming damage reduced slightly
  • -
  • Can now fill open reagent containers in a toilet to receive "toilet water".
  • -
  • No more message spam when someone fills a container using a sink
  • -
  • Can now wash your face using a sink, which washes away lipstick and wakes you up slightly
  • -
  • Washing things will now use progress bars
  • -
  • Ensures consuming a single syndicate donk pocket won't get you addicted to meth
  • -
  • Kinetic Accelerators and E-bows automatically reload
  • -
-

Glorken updated:

-
    -
  • Added a Knight Arena for Holodeck.
  • -
  • Added red and blue claymore sprites.
  • -
  • Changed overrided to overrode when emagging Holodeck computer.
  • -
-

KasparoVy updated:

-
    -
  • Vox versions of the Officer SWAT sechailer + HOS SWAT sechailer + Warden SWAT sechailer.
  • -
  • Resprited versions of most Human masks to fit Unathi, Tajara and Vulpkanin.
  • -
  • Warden now gets their own version of the SWAT sechailer in their locker.
  • -
  • HOS now gets the appropriate version of the SWAT sechailer in their locker.
  • -
  • Repositioned smokeables now available for Vox, Unathi, Tajara and Vulpkanin.
  • -
  • Properly shades Vox bandana down-state sprites.
  • -
  • Readds Tajaran bald hairstyle.
  • -
  • Alternate style of non-Human breath mask (incl. surgical/sterile mask) down-state positioning.
  • -
  • Corrects all non-Human species' breath mask (incl. surgical/sterile mask) down-state icons to use the right position style.
  • -
  • Minor adjustments to Tajaran breath mask up-state sprites.
  • -
-

PPI updated:

-
    -
  • Adds a reconnect button to the File menu in the client.
  • -
  • Adds head patting
  • -
-

Regen updated:

-
    -
  • Powersink can now drain a lot more power before going boom
  • -
  • Buffed the powersinks drain rate
  • -
  • Buffed explosion from an overloaded powersink, try to find it instead of overloading the grid.
  • -
  • Admin log warning before the powersink explodes
  • -
-

Spacemanspark updated:

-
    -
  • Miners can now utilize the power of mob capsules to take along their lazarus injected mining creatures!
  • -
  • Store your Pokemo- er, sorry, I mean mining mobs that you've captured in the lazarus capsule belt.
  • -
-

Tastyfish updated:

-
    -
  • Species that don't breathe can kill themselves now!
  • -
  • Suicide messages are now catered to your species.
  • -
  • Shortened the default pill & patch name when using the ChemMaster.
  • -
  • The chaplain now has a service radio headset, as Space Jesus intended.
  • -
-

TheDZD updated:

-
    -
  • When Ahelping, "Question" is now "Mentorhelp" and "Player Complaint" is now "Adminhelp."
  • -
  • Mentorhelps and PM replies from mentors appear in a bold aqua blue color.
  • -
  • Adminhelps and PM replies from admins appear in a bold bright red color.
  • -
  • PM replies from players appear in a dull/dark purple color.
  • -
  • Adds admin attack log to players being converted to cult.
  • -
  • Adds shadowling thrall jobbans.
  • -
  • Jobbanned players who are converted to shadowling thrall, revolutionary, or cultist will have the control of their body offered up to eligible ghosts.
  • -
- -

31 January 2016

-

Crazylemon64 updated:

-
    -
  • Syndicate borgs can now interact with station machinery
  • -
  • People with slime people limbs can now *squish
  • -
  • Skrell's vulnerability to alcohol is checked on their liver, now - a liver transplant will let them take alcohol like a champ - lacking a liver will have the same effect as being a skrell, when drinking
  • -
-

FalseIncarnate updated:

-
    -
  • Adds in the Magic Eight Ball toy, found in Claw Game prize orbs.
  • -
  • Adds in the Magic Conch Shell, an admin-only shell of power.
  • -
-

Fox McCloud updated:

-
    -
  • Updates Summon Guns and Magic to include many of the new guns
  • -
  • Summon Guns/Magic can no longer be used during Ragin' Mages
  • -
-

Tastyfish updated:

-
    -
  • The emergency shuttle status in the Status tab now has ETA/ETD/etc like before.
  • -
  • Code Gamma+ now has a 5 minute emergency shuttle call, like Red.
  • -
-

pinatacolada updated:

-
    -
  • Adds NanoUI to the operating computer
  • -
  • Adds health announcing, critical and oxygen damage aural alerts to the computer, with a menu to selectively turn them on and off
  • -
- -

29 January 2016

-

Crazylemon updated:

-
    -
  • The DNA scanner has now undergone a seminar to recognize fake identities; It will now scan the actual person's identity, rather than their disguise (read: wearing a mask with or without someone else's ID).
  • -
  • Matter eater now allows you to eat humans as if you were fat.
  • -
  • Eating mobs with an aggressive grab now generates attack logs.
  • -
-

Crazylemon64 updated:

-
    -
  • For a short while, there was a clerical error where all AI communications equipment was replaced with bananas. This has now been fixed.
  • -
  • Ghosts can now see the contents of smartfridges and look at the drone console
  • -
  • Humans now only produce one message when shaken while SSD
  • -
  • The supermatter no longer will irradiate everyone, everywhere, when it explodes.
  • -
  • Writing on paper will now add hidden admin fingerprints, so that you can't forge mean notes in someone else's name.
  • -
  • Brains are no longer able to escape their brain by being a sorcerer.
  • -
  • Astral projecting with other runes on the same tile will now no longer prevent you from re-entering
  • -
  • Voxxy that is become ex-voxxy no longer carry voxxy appearance! yaya!
  • -
-

FalseIncarnate updated:

-
    -
  • Allows plants to be identified as enhanced*. Enhancing plants results from using reagents (like saltpetre) that affect the stats of a seed instead of using mutagens/machines. *May not meet standards for being classified as "organic produce". (This was already possible, just renames enhanced plants for easier differentiation)
  • -
-

Fox McCloud updated:

-
    -
  • Fixes mutadone not working with some genetic mutations
  • -
  • Fixes banana honk and silencer being alcoholic
  • -
  • Fixes Kahlua being non-alcoholic
  • -
  • Fixes polonium not metabolizing
  • -
  • Fixes being able to receive free unlimited boxes from the Merchandise store
  • -
  • Adds in wooden bucklers
  • -
  • Re-adds roman shield to the costume vendor
  • -
  • Buffs Riot shield damage from 8 to 10
  • -
  • Adds in a Skeleton race
  • -
  • Tweaks the skeletons colors to be more realistic and to blend in less with the floor
  • -
  • Adds in lichdom spell for the wizard
  • -
  • Adds in lesser summon guns spell for wizard
  • -
  • adds in Mjolnir and the singularity hammer as weapons the wizard can purchase
  • -
  • Wizard can purchase the charge spell from the spell book
  • -
  • Wizard can purchase a healing staff from the spell book
  • -
  • Tweaks and lowers spell costs of utility spells for wizard
  • -
  • Re-organizes the spellbook to be better divided into categories and have a better window size
  • -
  • Knock now opens+unlocks lockers
  • -
  • Magic Missile has a slightly longer cooldown and no longer deals damage, but has a lower cooldown is upgraded
  • -
-

KasparoVy updated:

-
    -
  • Navy blue Centcom Officer's beret for use by the Blueshield.
  • -
  • Adds the new navy blue beret to the Blueshield's locker.
  • -
  • Gives the Blueshield's berets (black and navy blue) the exact same strip delay and armour as the Security Officer's beret.
  • -
  • Adds TG energy katana back and belt sprite.
  • -
  • Bo staff back sprite.
  • -
  • Adjusts energy katana sprites to make the weapon stand out a bit more from the regular katana.
  • -
  • Cutting open the toes of footwear so species with feet-claws can wear them.
  • -
  • Toeless jackboots.
  • -
  • Cleans up glovesnipping and lighting a match with a shoe.
  • -
  • Lighting a match with a shoe produces a more appropriate message, handled at the same standard as glove-snippingboot-cutting.
  • -
-

Tastyfish updated:

-
    -
  • Cargonia now has its own section in the manifest.
  • -
-

TheDZD updated:

-
    -
  • Due to budget cuts and reports of operatives accidentally firing enough bullets to reach a state of what our scientists refer to as "enough dakka," Syndicate High Command has decided to restore the Syndicate Strike Team arsenal to using standard-issue L6 SAW ammunition.
  • -
- -

24 January 2016

-

KasparoVy updated:

-
    -
  • Fixes markings overlaying underwear.
  • -
  • Nude icon in underwear.dmi
  • -
  • Fixes Vox robes not using the correct on-mob sprites.
  • -
  • Fixes unreported bug where there was a slim chance during character preview icon generation that a character with Security Officer set to high would get rendered with either the wrong beret sprite or no beret sprite at all.
  • -
  • Fixes an issue where Sigholt's fluff beret wasn't using the correct sprites.
  • -
-

Tastyfish updated:

-
    -
  • Passively power-consuming borg modules, such as the peacekeeper movement and shield module, won't spam the user infinitely if they're low on power anymore.
  • -
- -

23 January 2016

-

Fox McCloud updated:

-
    -
  • Removes Vampire HUD
  • -
  • moves the Vampire blood counter to a more easy to see location
  • -
  • Adds in a Changeling chemical counter display
  • -
  • Adds in a Changeling sting counter display
  • -
  • Vampire total blood and usable blood will now appear under status
  • -
  • Changes vampire blood display to be similar to ling chemical counter
  • -
  • Fixes unnecessary toxin damage being dealt on severe bloodloss
  • -
  • Fixes human mobs not receiving proper random names
  • -
  • Adds in knight armor
  • -
  • Grants the chaplain a set of crusader knight armor
  • -
  • Adds in cult-resistant ERT paranormal space suit
  • -
  • Allows the Chaplain to convert his null rod into a holy sword with crusader knight armor
  • -
  • Chaplain's closet is now a secure closet
  • -
  • Adds in Assault Gear crate to cargo
  • -
  • Adds in military assault belt
  • -
  • Adds in spaceworthy swat suits
  • -
  • tweaks bandolier to hold 2 additional shotgun shells
  • -
  • bartender starts off with +2 additional shells
  • -
  • Reduces the cost of the space suit crate and doubles its contents
  • -
  • Refactors knives so their behavior is more universal
  • -
  • Fixes Hulk not properly being removed when your health drops below a threshold
  • -
  • Fixes flickering vision in a mining mech
  • -
-

Tastyfish updated:

-
    -
  • Poly has taken a seminar on the latest trends in engine operations.
  • -
  • Player-controller parrots can now hear their headsets.
  • -
-

Tigerbat2000 updated:

-
    -
  • The nuclear disk escaping on the shuttle no longer counts as a syndicate minor victory.
  • -
  • Cultists can once again actually greentext the escape objective.
  • -
- -

20 January 2016

-

DarkPyrolord updated:

-
    -
  • Adds in hardsuit sprites for Vulpkanin
  • -
-

FalseIncarnate updated:

-
    -
  • Allowed cheap lighters and individual matches to be put into cigarette packages at the cost of cigarette space.
  • -
  • Matches can now be lit and put out by striking the match on your shoes. Good for if you lose that matchbox, or want to just feel cool.
  • -
-

Fox McCloud updated:

-
    -
  • Fixes brute damage on weapons not knocking people down.
  • -
  • Tweaks implant behavior to be more consistent and unified.
  • -
  • Lowers the pAI cooldown from 60 seconds to 5 seconds.
  • -
  • Raw telecrystal can now be used to charge uplink implants.
  • -
  • Fixes being unable to holster the pulse pistol
  • -
  • Fixes being able to holster shotguns
  • -
-

KasparoVy updated:

-
    -
  • Improved shading on all Vulpkanin hardsuit tails.
  • -
  • Vulpkanin hardsuit helmet respriting (colour tweaks).
  • -
  • Vulpkanin hardsuit helmets with proper flashlight-on sprites.
  • -
-

Tastyfish updated:

-
    -
  • The ID computer Access Report printout now separates the access list with commas so it's actually readable.
  • -
  • The ID computer Access Report printout isn't blank if you don't have an authorization card in anymore.
  • -
  • In the supply ordering & shuttle consoles, one can now cancel an order at either the Reason or Amount input dialogs.
  • -
  • Table flipping uses correct sprites.
  • -
-

TheDZD updated:

-
    -
  • Adds world.Topic() handling so that users are notified in-game when pull requests are opened, closed, or merged on the Github repo.
  • -
- -

18 January 2016

-

Crazylemon updated:

-
    -
  • New classes of shapeshifters have been sighted around the NSS Cyberiad...
  • -
  • Wizards now can't teleport to other antag spawn points.
  • -
  • Removes an extruding pixel from the left-facing IPC glider monitor sprite.
  • -
  • Ragin' Mages now spawn every 7 minutes, instead of 5. Admins can further adjust this by modifying the 'delay_per_mage' variable.
  • -
  • Ragin' Mages are now made with 100% less in-use souls (Apprentices won't have their consciousness yoinked).
  • -
  • It takes half an hour for the REAL chaos of ragin' mages to start, for at least a semblance of normality.
  • -
-

Dave The Headcrab updated:

-
    -
  • Adds the advanced energy revolver, toggles between taser and laser modes.
  • -
  • Removes the detective's revolver from the blueshield's locker.
  • -
  • Changes the taser the blueshield starts with into an advanced energy revolver.
  • -
-

Deanthelis updated:

-
    -
  • Added the ability for the Magnetic Gripper to pick up and place light tiles.
  • -
-

Fethas updated:

-
    -
  • Readds the hud icon showing up for master and servent
  • -
  • adds mindslave datum hud thingy based on TGs gang huds
  • -
-

Fox McCloud updated:

-
    -
  • Fixes not being able to add/remove Weapon Permit from IDs.
  • -
  • Fixes the energy sword being invisible in-hand when turned on.
  • -
  • Fixes the telebaton being invisible in-hand when extended.
  • -
  • Fixes eye-stabbing not having an attack animation or hitsound.
  • -
  • Fixes some kitchen utensils playing the wrong hit-sound and playing twice in some cases.
  • -
  • Fixes the butcher cleaver sprite being backwards.
  • -
  • Fixes the telebaton sprite being missing from the side.
  • -
  • Fixes the meat cleaver being invisible in-hand.
  • -
  • Corrects some grammatical descriptive errors for the elite syndicate hardsuit.
  • -
  • completely overhauls implants to TG's standards.
  • -
  • Adds storage implant.
  • -
  • Adds microbomb and macrobomb implants.
  • -
  • Adds in support for removing implants directly into cases.
  • -
  • Removes Bay style explosive implants.
  • -
  • Removes compressed matter implants.
  • -
  • Tweaks the uplink to reflect removal of the old implants and inclusion of the new.
  • -
  • Fixes/cuts down on the lag caused by monkey cubes.
  • -
-

Jey updated:

-
    -
  • Inflatable walls and door can now be deflated by altclicking them
  • -
  • Fixed lag from expanding multiple monkeycubes at once.
  • -
-

KasparoVy updated:

-
    -
  • Adds blank icons with standardized timings for species tail wagging, used in icon generation.
  • -
  • Fixes tails overlapping arms/limbs + gloves, etc. when facing EAST or WEST.
  • -
  • Ensures tails will overlap stuff as normal only when facing NORTH so as to avoid unwanted interference with the base sprite.
  • -
  • Tails now appear in ID cards, overlays things correctly.
  • -
  • Tails now overlay and are overlaid by things correctly in preview icons.
  • -
  • Modifies the positioning of tail icon generation in the ID card preview icon generation file.
  • -
  • Modifies the positioning of tail icon generation in the player preferences preview icon generation file.
  • -
  • Breaks limb generation into its own layer, breaks tail generation into a second layer that can be overlaid by limbs.
  • -
  • If the user's species is flagged to have a tail that is overlapped, TAIL_LAYER will now overlay the NORTH direction sprite of a tail now, while TAIL_UNDERLIMBS_LAYER gets all remaining directions. Otherwise icons are generated in the traditional manner.
  • -
  • Adjusts the Unathi right arm east direction and animated tail sprites, recolouring a random pixel and fixing a floating tail respectively.
  • -
  • Adjusts position of tail layer such that tails' north direction sprites will overlay backpacks (more importantly, satchel straps).
  • -
  • Accommodates admin-overrides to the body_accessory species check by setting the default animation template to Vulpkanin.
  • -
  • Adjusts north-direction Unathi static tail sprite, now attaches to the body in the correct location.
  • -
  • Adds some TG underwear.
  • -
  • Adds an NV science goggles worn sprite.
  • -
  • Ports Bay/TG berets.
  • -
  • Adjusts beret sprite, recolours strange orange pixels.
  • -
  • Adjusts NV science goggles object icon. Removed strange border and centered it.
  • -
  • Ports Polaris' PRs 761 and 778, brings over Ragnie's awesome Ward-Takahashi prosthetics.
  • -
-

Kyep updated:

-
    -
  • Changing level to gamma/delta/epsilon now displays a special gamma/delta/epsilon sprite on status monitors
  • -
  • Changing level to green/blue now clears the status monitors, so they no longer show higher alert levels after the level is changed
  • -
-

NTSAM updated:

-
    -
  • Added a rainbow IPC screen.
  • -
-

PPI updated:

-
    -
  • Modifies the effective time limit to activate the Nuclear Challenge as Nukeops from two minutes to seven minutes
  • -
-

Tastyfish updated:

-
    -
  • The QM now actually has a QM stamp instead of a fake one, as well as an approved and denied stamp.
  • -
  • New area named 'Genetics Maintenance' solidifying/relabelling the confusing area between the morge and Mech Bay as being fully maintenance again, but working correctly and with proper doors.
  • -
  • Fixed a few maintenance door names to be in parity to the rest of the station.
  • -
  • Added the ability to print the records photo of a crew member from a security records console. Useful for Wanted notices!
  • -
-

Tigercat2000 updated:

-
    -
  • You can no longer use the gibber for monkies.
  • -
  • Cleaned up gibber.dm styling.
  • -
  • The fire alarm now uses NanoUI, with color coded alert levels.
  • -
  • Upgraded NanoUI (again), fancy FontAwesome icons.
  • -
  • Didn't add any butts. Yet.
  • -
- -

13 January 2016

-

Fox McCloud updated:

-
    -
  • Fixes Rezadone not clearing mutated organs.
  • -
  • Clone damage immunity removed from Slime People, Shadowlings, Golems, and Vox
  • -
  • Explosions will no longer destroy things underneath turfs until the turf is exposed.
  • -
  • fixes a runtime related to revolver spinning.
  • -
  • fixes server loading taking an abnormally long time.
  • -
-

Kyep updated:

-
    -
  • Blob, vine and virus outbreaks are now more clearly labeled as such, to avoid people confusing them with each other
  • -
-

Tastyfish updated:

-
    -
  • NT Rep fountain pens and magistrate gold pens can now write in 5 different colors. The IAA gets a cheap plastic equivalent.
  • -
- -

11 January 2016

-

CrAzYPiLoT updated:

-
    -
  • Fixes the footsteps sounds to the fullest.
  • -
-

Crazylemon updated:

-
    -
  • Bomb guardians now automatically notify their master when they've set something to boom, so there's less accidental friendly fire
  • -
  • Bomb guardians are only notified that their trap failed, if it ACTUALLY FAILED.
  • -
  • Bomb guardians now are more aware of what is primed to explode.
  • -
  • Bomb guardian summoners can now defuse their guardian's bombs without harm.
  • -
  • Brought RAGIN' MAGES back up to function.
  • -
-

Dave The Headcrab updated:

-
    -
  • Added a new icon for the soy and cafe latte drinks. Icons courtesy of Full Of Skittles, resident overlord of art.
  • -
-

Fox McCloud updated:

-
    -
  • Re-arranges the armory and changes its contents minorly.
  • -
  • Adds in rubbershot ammo boxes.
  • -
  • Fixes Mutadone incurring a massive cost on the server.
  • -
  • Positronic brains can no longer speak binary.
  • -
  • Positronic brains can be prevented from speaking (or allowed) by toggling their speaker on/off.
  • -
  • IPC's positronic brains start off toggled off.
  • -
  • Fixes the supermatter announcement causing massive amounts of server lag.
  • -
  • Adds in tradable telecrystals.
  • -
- -

08 January 2016

-

Crazylemon updated:

-
    -
  • Fully enables a system to allow species to have unique procs and verbs that come and go with the species.
  • -
  • IPCs lose their change monitor verb when changing species now. Gone are the days of recalling a past IPC life to perform self-barbery! Oh, woe is me!
  • -
  • Sleepers and Body Scanners will now reliably work when rotated
  • -
  • SSD humans should be asleep more reliably now.
  • -
-

Dave The Headcrab updated:

-
    -
  • Nerfs the damage the Detective's revolver does from 15 brute to 5 brute.
  • -
  • Adds a 300 round capacity buckshot magizine that fits into the L6 Saw.
  • -
  • Adds a 25 round capacity 40mm HE magizine that fits into the L6 Saw.
  • -
  • Adds the 'Devastator' L6 SAW, starts off loaded with the buckshot magizine.
  • -
  • Gives the SST the 'Devastator' L6 Saw, and one of each mag type in their bag.
  • -
-

FalseIncarnate updated:

-
    -
  • Plants will now begin to die over time if their age exceeds 5 times their TRAIT_MATURATION value.
  • -
  • Weed growth chance per process in trays has been slightly increased (Previously: 5% chance if no seed, 1% otherwise;Now: 6% / 3%).
  • -
  • Pest growth in trays has been slightly buffed. (Previously: 3% chance to increase by 0.1; Now: 5% chance to increase by 0.5)
  • -
-

Fethas updated:

-
    -
  • Due to Archmage Steve leaving the nya-cromantic stone near the microwave, the true power of the stone has been unleashed. Subjects of the stone are not only ressurected ... but resurrected as catgirls ... We fired steve.
  • -
-

Fox McCloud updated:

-
    -
  • fixes a bug relating to some brute/burn damage being dealt to human mobs.
  • -
  • Adds in overloading APCs, causing them to arc electricity to mobs in range.
  • -
  • Makes Engineering related APCs overload proof.
  • -
  • Implements the timestop spell.
  • -
  • Implements new sepia slime reaction which halts time in an AoE.
  • -
  • sentience potions no longer can make slimes sentient.
  • -
  • Removes Hulk instant stun.
  • -
  • Hulk damage increased.
  • -
  • Hulk wears off at a lower health threshold.
  • -
  • Fixes strange reagent not working on simple animals.
  • -
  • Reduces the amount shock damage and bounces for the Tesla engine.
  • -
  • Fixes Syndicate Cyborg's LMG being invisible.
  • -
  • Fixes the uplink kit having implanters that were both nameless and looked as if they had been used.
  • -
-

KasparoVy updated:

-
    -
  • Added the security gasmask, sexy mime mask, bandanas, balaclava, welding gas mask and wrestling masks for Vox. Added adjusted-state sprites for the Vox breath, medical, and surgical masks.
  • -
  • Removed a duplicate of the human balaclava sprite.
  • -
  • Modifies the Vox plague-doctor, fake moustache, sterile and medical mask sprites to fit the Vox anatomy and animates the Vox SWAT mask. Corrects the names of some Vox mask adjusted-state sprites.
  • -
-

Tastyfish updated:

-
    -
  • Fixed the pronouns in a few verbs and the door to 'Interrogation Observervtion'.
  • -
-

Tigercat2000 updated:

-
    -
  • Added 96x96 (3x) res option to icons menu
  • -
- -

06 January 2016

-

Certhic updated:

-
    -
  • Corrected some air alarms so that atmos computer can access them
  • -
  • Bodyscanner now sees mechanical parts in internal organs
  • -
-

Crazylemon64 updated:

-
    -
  • Sleeping simple animals should tick down sleeping as normal - deaf simple mobs are no longer a thing
  • -
-

Tastyfish updated:

-
    -
  • Instruments now use NanoUI.
  • -
  • Corrected the blueshield mission briefing.
  • -
- -

03 January 2016

-

TheDZD updated:

-
    -
  • Ports over changelog system from /tg/station.
  • -
-
- -GoonStation 13 Development Team -
- Coders: Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion
- Spriters: Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said No
-
-
-

Creative Commons License
Except where otherwise noted, Goon Station 13 is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.
Rights are currently extended to SomethingAwful Goons only.

-

Some icons by Yusuke Kamiyamane. All rights reserved. Licensed under a Creative Commons Attribution 3.0 License.

-
- - + + + + Paradise Station Changelog + + + + + + + +
+ + + + +
+
Paradise Station
+ +

+ Visit our IRC channel: #crew on neko.sneeza.me +
+ + + + + +
+ Current Project Maintainers: -Click Here-
+ Currently Active GitHub contributor list: -Click Here-
+ Coders: ZomgPonies, DaveTheHeadcrab, tigercat2000, FalseIncarnate, AuroraBlade, Tastyfish, Crazylemon64, KasparoVy
+ Spriters: FullOfSkittles
+ Sounds:
+ Main Testers: Anyone who has submitted a bug to the issue tracker
+ Thanks to: Baystation 12, /tg/station, /vg/station, NTstation, CDK Station devs, FacepunchStation, GoonStation devs, the original SpaceStation developers and Radithor for the title image.
Also a thanks to anybody who has contributed who is not listed here :( Ask to be added here on irc.
+
Have a bug to report?
Visit our Issue Tracker.
+ Please ensure that the bug has not already been reported and be as descriptive as possible about the circumstances under which the bug occurred. +
+ + +
+

20 April 2016

+

Crazylemon64 updated:

+
    +
  • Bureaucracy crates now contain granted and denied stamps.
  • +
+

FalseIncarnate updated:

+
    +
  • Anomalies will now be properly neutralized by signals that match their code and frequency, instead of using the default frequency and their code.
  • +
+

FlattestGuitar updated:

+
    +
  • Adds shot glasses.
  • +
+

Fox McCloud updated:

+
    +
  • Removes the ability to put a pAI into securitrons and ED-209's
  • +
  • Drinking glasses now have an in-hand sprite
  • +
  • DNA injectors no longer have a delay when used on yourself
  • +
  • DNA injectors no longer delete on use, but become used, much like auto-injectors
  • +
  • Fixes a bug where you can exploit the genetic scanner to get multiple injectors
  • +
  • Fixes not being able to cancel creating an DNA injector
  • +
  • remove spacesuits causing injections to the head to take longer
  • +
  • FIxes heat resist mutation not making you immune to high pressure, fire, or high temperatures
  • +
  • removes some not-well-known damage resists from cold/heat mutations
  • +
  • Re-maps botany a bit to make it more bee and botanist friendly
  • +
  • Adds in Abductors Game Mode
  • +
+

MarsM0nd updated:

+
    +
  • Embeded object removal is now done with hemostat again
  • +
  • Borgs are able to do embeded object surgery
  • +
+

Tastyfish updated:

+
    +
  • Makes the server startup substantially faster.
  • +
+

monster860 updated:

+
    +
  • Crowbarring open a spesspod doors is no longer broken
  • +
+

tigercat2000 updated:

+
    +
  • -tg- thrown alerts have been added. This means you get an alert when buckled or handcuffed or many many other things happen to you. It then gives you a tool tip when you hover over it, and it may or may not do something when you click it. Have fun!
  • +
+ +

14 April 2016

+

Aurorablade updated:

+
    +
  • Removes the !!FUN!! of having headslugs gold core spawnable.
  • +
+

Fox McCloud updated:

+
    +
  • Added in sounds (instead of a chat-based message) for when airlocks are bolted/unbolted
  • +
  • Added in sound for when airlocks deny access
  • +
  • cutting/pulsing wires will play a sound
  • +
  • ups nuke ops game mode population requirement from 20 to 30
  • +
  • Adds in mining drone upgrade modules to increase their health, combat capability, or reduce their ranged cooldowns
  • +
  • Adds in mining drone "AI upgrade" a sentience potion that only works on mining bots
  • +
  • Mining bots should be less likely to shoot you when attacking hostile mobs
  • +
  • Killer tomatoes actually live up to their name now and are hostile mobs
  • +
  • Killer tomatoes are an actual fruit now; activate it in your hands to make them into a mob
  • +
  • Killer tomatoes are directly mutated from regular tomatoes instead of blood tomatoes
  • +
  • Increased the yield of regular tomatoes by 1
  • +
  • Tweak some stats on the killer tomato seeds
  • +
  • Fixes the blind player preference not doing anything
  • +
  • Adds portaseeder to R&D
  • +
  • Scythes will conduct electricity now
  • +
  • Mini hoes play a slice sound instead of bludgeon sound
  • +
  • Plant analyzer properly has a description and origin tech
  • +
  • Can have hulk+dwarf mutations together
  • +
  • Can have heat+cold resist together
  • +
  • Can only remotely view people who also have remote view
  • +
  • Fixes cold mutation not having an overlay
  • +
  • Hallucinations will no longer tick down twice as fast as they should nor will they spawn twice as many hallucinations as they should
  • +
  • Incendiary mitochondria no longer asks who you want to cast it on (it always is meant to be cast on yourself)
  • +
  • Fixes permanent nearsightedness even when wearing prescription glasses
  • +
+

KasparoVy updated:

+
    +
  • Head accessories now behave like facial hair: They will no longer be hidden by clothing items that BLOCKHEADHAIR (have the BLOCKHEADHAIR flag).
  • +
  • Wearing a piece of clothing that blocks head hair will no longer make head accessories (facial markings/horns/antennae) invisible until an icon update is triggered while the headwear is off.
  • +
+

Meisaka updated:

+
    +
  • law manager no longer freaks out with Malf law
  • +
+

Tastyfish updated:

+
    +
  • The /vg/ library computer interface has been ported, giving a much better use experience.
  • +
  • Books can now be flagged for inappropriate content.
  • +
+

TheDZD updated:

+
    +
  • Removes shitty Caelcode bees.
  • +
  • Hydroponics can now manage bee colonies, bees produce honeycombs that can be ground to obtain honey, a decent nutriment+healing chemical
  • +
  • Hydroponics can inject a queen bee with a syringe of a reagent to alter her DNA to match that reagent, meaning all honeycombs produced will contain that reagent in small amounts
  • +
  • Bees with reagents will attack with that reagent. It takes 5u of a reagent to give a bee that reagent.
  • +
  • Added the ability to make Apiaries and Honey frames with wood
  • +
  • Added the ability to make Royal Bee Jelly from 10 Mutagen and 40 Honey
  • +
  • Added the ability to make more Queen Bees from Royal Bee Jelly by using it on an existing Queen, to split her into two Queens
  • +
  • Removes some snowflakey mob behavior from bears, snakes and panthers.
  • +
  • Hudson is feeling punny.
  • +
  • Hostile mob AI should now be a bit more cost-efficient.
  • +
+

monster860 updated:

+
    +
  • Adds area editing, link mode, and fill mode to the buildmode tool
  • +
+ +

12 April 2016

+

FalseIncarnate updated:

+
    +
  • Adjusting the setting of a vendor circuit board is no longer random, but instead provides a select-able list.
  • +
  • Vendor Circuit Board design moved from the Circuit Imprinter to the Autolathe, acid requirement replaced by metal.
  • +
  • Burnt matches can no longer light cigarettes, pipes, or joints.
  • +
+

Fethas updated:

+
    +
  • Nukes the cargo train code rscadd:Adds simple vehicle framework and converts secway/janicart/snowmobiles/bikes/cars/ambulance to it rscadd:Adds space speedbike, red and blue versions, yes you WILL need a spacesuit rscadd:Maps janicart and secway onto metastation (but not ambulance no pareamedic garage, no i am not mapping that)
  • +
  • You should now be able to operate on IPC eyes, SHOULD bugfix:hopefully surgery on diona works right
  • +
+

Fox McCloud updated:

+
    +
  • Adds in TraitorVamp; game mode that's essentially like TraitorChan, but with a Vampire instead of a Changeling
  • +
  • Vampires cannot use holoparasites
  • +
  • Malf AI will automatically lose if it exits the station z-level
  • +
+

Tastyfish updated:

+
    +
  • All cats can kill mice now.
  • +
  • E-N can't suffocate.
  • +
  • Startup time is now shorter.
  • +
  • Removed the Station Collision away mission from rotation, due to multiple conceptual and technical issues.
  • +
+ +

07 April 2016

+

Crazylemon64 updated:

+
    +
  • Removes an offset from the advanced virus stealth calculation, causing viruses to be more stealthy than the sum of their symptoms.
  • +
  • Mulebots will now send announcements to relevant requests consoles on delivery again.
  • +
+

FalseIncarnate updated:

+
    +
  • Adds logic gates, for doing illogical things in a logical manner.
  • +
  • Adds buildable light switches, for all your light toggling needs.
  • +
  • Fixes a resource duplication bug with mass driver buttons.
  • +
+

Fethas updated:

+
    +
  • maybe makes them last longer...maybe..and fixes the event end message
  • +
+

Fox McCloud updated:

+
    +
  • Maps in the slime management console to Xenobio
  • +
  • Reduces Xenobio monkey box count from 4 to 2
  • +
  • Fixes weakeyes having a negligible impact
  • +
  • Can spawn friendly animals with a new gold core reaction by injection with water
  • +
  • Hostile animal spawn increased from 3 to 5 for hostile gold cores
  • +
  • Swarmers, revenants, and morphs no longer gold core spawnable
  • +
  • Fixes invisible animal spawns from gold core/life reactions
  • +
  • Adds tape to the ArtVend
  • +
  • Can no longer use sentience potions on bots
  • +
  • Added in Plasma Dust reagent, acquired by grinding plasma sheets; it's more toxic than regular plasma and generates plasma gas when spilled onto turfs.
  • +
  • Slimecore reactions now require plasma dust as opposed to dispenser plasma
  • +
  • Added in new Rainbow slime; inject with plasma dust to get a random colored slime. Acquire by having 100 mutation chance on a slime when it splits.
  • +
  • Monkey Recycler can produce different types of monkey cubes; change the cube type by using a multitool on the recycler
  • +
  • Epinephrine/plasma reagents changing mutation rate has been removed
  • +
  • Mutation chance is inherited from slime generation to slime generation as opposed to being purely random.
  • +
  • New reactions added for red and blue extracts: red generates mutator, which increases mutation chance, and blue generates stabilizer, which decreases mutation chance.
  • +
  • Slime glycerol reaction removed
  • +
  • Slime cells are now high capacity cells (more power than before)
  • +
  • extract enhancer increases the slime core usage by 1 as oppose to setting it to three
  • +
  • slime enhancer increases slime cores by 1 as opposed to setting the core amount to 3
  • +
  • Chill reaction lowers body temperature slightly more so it doesn't just wear off instantly
  • +
  • Reduces Xenobio plasma sheets from 8 to 3 and removes that pesky boombox
  • +
  • Processors no longer produce 1 more slime core than intended
  • +
  • Less blank/spriteless/empty foods from the silver core reaction
  • +
  • Virology mix reactions now use plasma dust as opposed to plasma
  • +
  • Statues can no longer move/attack people unless they're in total darkness or all mobs viewing them are blinded
  • +
  • statues are invincible to anything other than full out gibbing.
  • +
  • Statues flicker lights spell range increased
  • +
  • Blind spell no longer impacts silicons
  • +
  • Fixes statues being able to attack/move whenever they feel like it, regardless of client statues
  • +
  • Fixes blind spell impacting the statue
  • +
+

Tastyfish updated:

+
    +
  • Beepsky is no longer a pokemon.
  • +
  • pAI-controlled Bots now reliably speak human-understandable languages over the radio.
  • +
  • More floor blood for the blood gods. (Or rather, as much as there was supposed to be.)
  • +
+

tigercat2000 updated:

+
    +
  • Items in your off hand will now count towards access.
  • +
+ +

02 April 2016

+

Crazylemon64 updated:

+
    +
  • Metal foam walls will now produce flooring on space tiles
  • +
  • Syringes will now draw water from slime people.
  • +
+

FalseIncarnate updated:

+
    +
  • Let's you know when your container is full when filling from sinks.
  • +
  • Prevents splashing containers onto beakers and buckets that have a lid on them.
  • +
  • Pill bottles can now be labeled with a simple pen.
  • +
  • Beakers/buckets (and pill bottles) now accept 26 character labels from pens.
  • +
+

Fethas updated:

+
    +
  • Various spells have had a tweak to stun/reveal/cast, some other number stuff...
  • +
  • Nightvision
  • +
  • harvest code is now in the abilites file.
  • +
  • New fluff objectives
  • +
  • Hell has recently remapped its blood transit system and you can now once again crawl through blood. We are sorry for the-GIVE US YOUR SOUL!
  • +
+

FlattestGuitar updated:

+
    +
  • Alcoholic beverages now have proper levels of ethanol in them. Good luck passing out after a beer.
  • +
+

Fox McCloud updated:

+
    +
  • Adds in the Lusty Xenomorph Maid Mob; currently admin only.
  • +
  • Fixes xenomorph brains having the wrong sprite, no origin tech, and incorrect name
  • +
  • removes xenomorph egg from hotel
  • +
  • upgrades are no longer needed to for the available toys in the prize vendor
  • +
  • Implements Advanced Camera Consoles. A type of camera console that function like AI's vision style. Non-buildable/accessible.
  • +
  • Adds in Xenobiology Advance Cameras. A type of camera console that functions like advanced cameras, but only works in Xenobiology areas; can move around slimes and feed them with the console as well. Also non-buildable/accessible (for now).
  • +
  • Adds in cerulean slime reaction that generates a single use blueprint. On use it colors turfs a lavender color
  • +
  • Adds disease1 outbreak event
  • +
  • Adds appendecitis event
  • +
  • Roburgers now properly have nanomachines in them
  • +
  • Re-adds nanomachines
  • +
  • Experimentor properly generates nanomachines instead of itching powder
  • +
  • Fixes big roburgers having a healing reagent in them
  • +
  • Adds nanomachines to poison traitor bottles
  • +
  • Tajarans can now eat mice, chicks, parrots, and tribbles
  • +
  • Vulpkanin and Unathi can now eat mice, chicks, lizards, chickens, crabs, parrtos, and tribbles
  • +
  • fixes spawned changeling headcrab behavior
  • +
+

KasparoVy updated:

+
    +
  • Incisions made at the beginning of embedded object removal surgery can now be closed in the same procedure.
  • +
+

ProperPants updated:

+
    +
  • Maint drones have magboots.
  • +
  • Removed plastic from maint drones. Literally useless for station maintenance.
  • +
  • Increased starting amounts of some materials for maint drones and engi borgs.
  • +
  • Reduced the number of lines taken by Engineering cyborgs calling on materials stacks.
  • +
  • Operating tables can be deconstructed with a wrench.
  • +
  • Fixed and shortened description of metal sheets.
  • +
+

Tastyfish updated:

+
    +
  • Bots can now be controlled by players, by opening them up and inserting a pAI. *beep
  • +
  • MULEbots can now access the engineering destination.
  • +
  • All MULEbot destinations should now have the correct load/unload direction, meaning the crates won't be dumped inside the flaps.
  • +
  • Diagnostic HUD's now give health and status information about bots.
  • +
  • MULEbot rampage blood tracks are now rendered correctly and handle UE traces as appropriate.
  • +
  • Bots should (hopefully) lag the game less now.
  • +
  • Beepsky contains 30% more potato.
  • +
  • Action progress bars are now smooth.
  • +
  • Clicking a filled inventory slot's square with an open hand now clicks the item in the slot.
  • +
  • Status displays now display the time when in Shuttle ETA mode and no shuttle activity is happening.
  • +
  • Shuttle ETA countdowns on status displays are now amber.
  • +
  • pAI's can now use the PDA chatrooms.
  • +
  • Adds treadmills to brig cells, to give the prisoners something productive to do.
  • +
+

TheDZD updated:

+
    +
  • A lot of the guns and armor in the station collision, space hotel, academy, and wild west away missions have been removed/replaced.
  • +
  • Removes that fucking facehugger from station collision.
  • +
+

tigercat2000 updated:

+
    +
  • Virus2 has been removed.
  • +
  • Virus1 is back. Viva la revolution.
  • +
  • You can now have up to 20 characters.
  • +
+ +

26 March 2016

+

Fox McCloud updated:

+
    +
  • Adds in dental implant surgery. Implant pills into people's teeth.
  • +
  • Major rebalance and Shadowling update (https://github.com/ParadiseSS13/Paradise/pull/3986 for details). In general, Shadowlings can no longer enthrall or engage in Shadowling like behavior, pre-hatch. Post-hatch, shadowlings are much more powerful, with a ride array of New abilities such as extending the shuttle or making thralls into lesser shadowlings. Shadowling gameplay should not revolve almost entirely around darkness, as opposed to pre-hatch shenanigans.
  • +
  • Robotics now has a "sterile" surgical area for performing augmentations
  • +
  • Adds the FixOVein and Bone Gel to the autolathe
  • +
  • ensures all surgical tools have origin tech on them; lowers origin tech on FixoVein
  • +
+

KasparoVy updated:

+
    +
  • Slime People can now wear underwear.
  • +
  • Slime People can now wear undershirts.
  • +
+

TheDZD updated:

+
    +
  • NT has removed trace amounts of a highly-addictive substance from the "100% real" cheese used in cheese-flavored snacks. As a result, incidence rates of crewmembers becoming addicted to Cheesie Honkers should reduce to zero.
  • +
  • After receiving complaints about crewmembers often being unable to physically function without a back-mounted barrel of coffee, NT has replaced station all sources of coffee on the station, including coffee beans themselves with a largely decaffeinated version. It was funny the first time almost every crewmember aboard the NSS Cyberiad was lugging around their own oil barrel filled with coffee, it wasn't so funny, nor good for productivity the eighteenth.
  • +
+ +

25 March 2016

+

Crazylemon64 updated:

+
    +
  • You now will actually have the correct `real_name` on your DNA.
  • +
  • No more roundstart runtimes regarding IPC hair.
  • +
  • Mitocholide rejuv will work more usefully now.
  • +
  • Limbs and cyborg modules will no longer appear in your screen.
  • +
  • Cyborg module icons are now persistent throughout logging in and out.
  • +
  • Various cyborg modules, like engineering, now use the proper icon.
  • +
+

FlattestGuitar updated:

+
    +
  • Adds confetti grenades.
  • +
+

Fox McCloud updated:

+
    +
  • Fixes Sleeping Carp combos not having an attack animation
  • +
  • Fixes several chems not properly healing brute/burn damage, consistently, as intended
  • +
+

KasparoVy updated:

+
    +
  • Unbranded heads and groins no longer invisible.
  • +
  • Zeng-hu left leg will now be in line with the body when facing south.
  • +
+ +

22 March 2016

+

Crazylemon64 updated:

+
    +
  • Repairs all sorts of eldritch occurences that happen when you put an organic head on an IPC body, as well as some decapitation bugs
  • +
  • Makes heads keep hair on removal
  • +
  • Amputated limbs from a DNA-injected individual now will keep their appearance of the DNA-injected person
  • +
  • Wounds will vanish on their own now
  • +
  • Admins now have an "incarnate" option on the player panel when viewing ghosts for quick player instantiation
  • +
  • Fixes a runtime regarding failing a limb reconnection surgery
  • +
  • Copying a client's preferences now overrides the previous mob's DNA
  • +
  • A DNA injector is now more thorough, and affects the DNA of mobs' limbs and organs
  • +
  • DNA-lacking species can no longer be DNA-injected
  • +
  • Brains are now labeled again
  • +
  • Splashing mitocholide on dead organs will make them live again.
  • +
  • The body scanner now detects necrotic limbs and organs.
  • +
  • pAIs and Drones are now affected by EMPs and explosions while held.
  • +
+

Fethas updated:

+
    +
  • Adds a surgery for infection treatmne/autopsys that is simply cut open, retract, cauterize
  • +
  • fixes a dumb error in internal bleeeding surgerys
  • +
  • Chaos types no longer random teleport, but will make the target hallucinate everyone looks like the guardian.
  • +
+

FlattestGuitar updated:

+
    +
  • Adds a snow, navy and desert military jacket.
  • +
+

Fox McCloud updated:

+
    +
  • Removes random 1% chance to heal fire damage
  • +
  • Removes passive healing from resist heat mutation
  • +
  • Regen mutation heals every cycle (albeit less, on average), but doesn't cost hunger
  • +
  • Fixes not being able to speak over xeno common or hivemind when you receive the Xeno hive node
  • +
  • Adds in the ability to transfer non-locked metal+glass only designs from the protolathe to autolathe
  • +
  • Changes Outpost Mass Driver to prevent accidental spacings
  • +
  • Shadow people no longer dust on death, are rad immune+virus immune, and can be cloned. Slip immunity removed
  • +
  • Shadowlings no longer get hungry or fat and no longer dust on death
  • +
+

KasparoVy updated:

+
    +
  • The ability to change your head, torso and groin as an IPC in the character creator. Non-IPCs cannot access the parts.
  • +
  • Head, torso and groin sprites for all mechanical limb/bodypart brands but Morpheus and the unbranded ones (since those already exist) from Polaris.
  • +
  • Faux-eye optics for non-Morpheus heads.
  • +
  • The ability to change optic (eye) colour if you've got a non-Morpheus head.
  • +
  • The ability to choose human hair styles (wigs) and facial hair styles (postiche) with non-Morpheus heads. Non-Morpheus heads cannot choose screens. Conversely, Morpheus heads cannot choose wigs or facial hair.
  • +
  • Two hair styles from Polaris.
  • +
  • The ability for IPCs to wear undergarments (shirts and trousers).
  • +
  • Antennae (colourable) for IPCs.
  • +
  • IPC monitor adjustment verb will now adjust optic colour if the head is non-Morpheus.
  • +
  • Combat/SWAT boots can now be toecut and jacksandals can't.
  • +
  • ASAP fix to what would've broken the ability to configure prostheses in character creation.
  • +
  • Adjusted masks no longer block CPR (including bandanas).
  • +
  • You can no longer run internals from adjusted breath masks (or airtight adjustable masks in general).
  • +
+

Regens updated:

+
    +
  • Robotic hearts will now properly give the mob a heart attack instead of just damaging it when EMP'd
  • +
  • Assisted organs will now also take damage from EMP's
  • +
  • Internal robotic and assisted organs will now actually take damage from EMP's
  • +
+

Tastyfish updated:

+
    +
  • Adds PDA chatrooms. Post memes! Talk to your fellow collaborators! Get caught!
  • +
  • You can now set the PDA messenger to automatically scroll down to new messages.
  • +
  • Pet collars now act as death alarms and can have ID's attached to them.
  • +
  • All domestic animals can now wear collars.
  • +
  • You can now make video cameras at the autolathe.
  • +
+

TheDZD updated:

+
    +
  • Fixes an instance of old code being so incredibly, unbelievably, makes-me-want-to-stab-myself-in-the-eye-edly idiotic.
  • +
+

TravellingMerchant updated:

+
    +
  • Kidan have new sprites!
  • +
+

tigercat2000 updated:

+
    +
  • Nukeops now have an assault pod, they can use it for 30 TC. Loud and mean.
  • +
  • Lighting overlays can no longer go below 0 lum_r/g/b
  • +
  • Shuttles will work with lighting better.
  • +
  • Wizards can no longer teleport to prohibited areas such as Central Command.
  • +
+ +

16 March 2016

+

Crazylemon64 updated:

+
    +
  • Being in godmode now makes you immune to bombs
  • +
  • Science members now get compensated when they ship tech disks to centcomm.
  • +
  • Science crew are no longer paid when they "max" research.
  • +
  • Roboticists now get credit for making RIPLEYs and Firefighters
  • +
  • Slime people can now regrow limbs on a more lax nutrition requirement
  • +
  • Enhances the nutripump+ to let slime people regrow limbs with it active
  • +
  • Skeletons, slime people, IPCs, and Diona no longer leave blood when hit
  • +
  • Rejuvenating a slime person will no longer clog up their "blood"
  • +
  • Slime people will now regenerate "blood" from having water in their system
  • +
  • The decloner can now be created again
  • +
  • Environment smashing mobs can now destroy girders.
  • +
+

DaveTheHeadcrab updated:

+
    +
  • Removes the check for species on the update_markings proc.
  • +
+

FalseIncarnate updated:

+
    +
  • Xeno-botany is now more user-friendly, and less random letters/numbers.
  • +
  • Hydroponics now has a connector hooked up to the isolation tray and a new connector in their back room for those strange plants that like spewing plasma or eating nitrogen.
  • +
  • You can now (finally) build the xeno-botany machines, and science can print off their respective boards.
  • +
+

Fethas updated:

+
    +
  • Syringes are no longer sharp
  • +
  • byond likes direct pathing so item/organ/internal not item/organ even if it shouldn't be in the internal_organs list. This was preventing the list from doing stuff correctly.
  • +
  • fixed ipc organ manipulation surgery, you can now insert a replacment ipc organ directly instead of needing a screwdriver in your main hand
  • +
  • nanopaste now will repair organs with robotic >= 2 instead of > 2 cuase i am an idiot
  • +
  • Fix, hopefully, for a runtime for clientless mobs whos head are cut off...
  • +
  • Hopefully fixes issues with diona eyes
  • +
  • Though shalt not eat robotic organs..including cybernetic implants..
  • +
  • ITS SURGERY_STEP/DETHRALL NOT SURGERY_STEP/INTERNAL/DETHRALL
  • +
+

FlattestGuitar updated:

+
    +
  • Adds three new synthanol drinks
  • +
  • Drinking synthanol is now a bad idea if you're organic
  • +
  • A glass of holy water now looks like normal water
  • +
+

Fox McCloud updated:

+
    +
  • Adds in drink fizzing sound
  • +
  • Drink/bartender recipes use this new fizzing sound in addition to a few other recipes
  • +
  • Adds in a fuse burning sound
  • +
  • Bath salts, black powder, saltpetre, and charcoal use this sound now
  • +
  • Adds in a matchstrike+burning sound
  • +
  • Lighting a match triggers this new sound
  • +
  • Adds in scissors cutting sound
  • +
  • Cutting someone's hair uses this new sound
  • +
  • Adds in printer sounds
  • +
  • printing off papers from various devices typically uses these sounds
  • +
  • Adds computer ambience sounds
  • +
  • black box recorder and R&D core servers both play this sound at random rare intervals
  • +
  • Reduces the tech level (and requirement) for nanopaste
  • +
  • Reduces the tech level (and requirement) for the plasma pistol
  • +
  • Removes Nymph and drone tech levels
  • +
  • Reduces tech levels on the flora board
  • +
  • Adds tech level requirements to mech sleepers, mech syringe guns, mech tasers, and mech machine guns
  • +
  • Increases tech cost of the decloner
  • +
  • Removes the pacman generators
  • +
  • Removes emitter
  • +
  • Removes flora machine (functionless anyway)
  • +
  • Removes the pre-spawned nanopaste
  • +
  • Removes space suits
  • +
  • Removes excavation gear
  • +
  • Replaces the soil with actual hydroponic trays (more aesthetic than anything)
  • +
  • Removes most external asteroid access from the station
  • +
  • Excavation storage is now generic science storage
  • +
  • removed the plasma sheet
  • +
  • Fixes augments not showing up in R&D unless specifically searched for
  • +
  • Fixes some augments being unavailable in mech fabs
  • +
  • Fixes augments having no construction time
  • +
  • Fixes xenos not gaining plasma when breathing in plasma
  • +
  • Fixes plasma reagent not generating plasma for a person
  • +
  • Screaming has different sounds based on being male or female
  • +
  • Implements Goon's screaming sounds.
  • +
  • Screaming tone is now based on age of character instead of being random
  • +
  • Ups the cooldown on screaming from 2 seconds to 5 seconds
  • +
  • Removes chance for Whilhelm scream
  • +
  • Borgs can now scream
  • +
  • Monkey's now have a unique screaming sound
  • +
  • IPCs now scream like cyborgs
  • +
  • Updates slot machines to have higher jackpots and more payouts with more interesting sounds
  • +
  • Adds X-Ray, Thermal, Anti-tun, and Reviver implants to the nuke ops uplink (augments come with one auto-implanter) rcsadd: Adds in augment auto-implanter, which inserts and implant without surgery
  • +
  • tweaks a large number of chems; behaviors are largely retained, but new flavor messages, probabilities, etc may be present; overall, you can expect chems to do the same thing
  • +
  • Tabun re-replaced with Sarin rcsadd: New reagent: cholesterol: if overdosed on, it can cause a heart attack--fatty foods, cheese, eggs, and some meats all produce cholesterol in your body.
  • +
  • Mixing Sarin, Meth, or Cyanide will poison in a very small area of the reaction if you're not on internal OR not wearing a gas mask
  • +
  • Chemist warddrobe now has two gas masks
  • +
  • Teslium will now impact synthetics AND organics
  • +
  • Fixes facehuggers hugging already infected people
  • +
  • Fixes facehuggers hugging people while dead
  • +
  • Fixes Embryo's developing twice as fast as they should
  • +
  • Fixes up some behaviors with xeno eggs
  • +
  • Xeno acid can now melt through floors and the asteroid
  • +
  • Xeno's now play the gib sound when actually gibbed
  • +
  • Implements Changeling headcrabs/headspiders
  • +
  • Fixes xenos not throwing their organs when gibbed
  • +
  • Fixes swallowed mobs not being ejected when a human is gibbed
  • +
  • Adds in spider eggs reagent, an infectious reagent that requires surgery to correct
  • +
  • Fixes EMPs causing eye implant users to be permanently blind
  • +
  • Increases bag of holding's storage capacity
  • +
  • Removing a heart no longer kills the patient instantly, but induces a heart attack
  • +
  • Demon hearts will not work
  • +
  • Should now actually be able to re-insert hearts
  • +
  • Reworks addictions to bettter differentiate them betweeen overdosing and make them more realistic.
  • +
  • changes which chems are addictive, currently, the follow reagents are now addidctive: meth, crank, krokodil, bath salts, space drugs, perfluoradecalin, omnizine, coffee, nicotine, fliptonium, ultra lube, surge, fake cheese, weird cheese, ephedrine, diphenhydramine, teporone, and morphine
  • +
  • sleepers help you recover from addiction faster
  • +
  • Can now make cable coils in autolathes
  • +
  • Fixes the slot machine announcements not displaying properly
  • +
+

Tastyfish updated:

+
    +
  • The super fart mutation now gives you a spell-like ability instead of augmenting the emote.
  • +
  • Vampire abilities are now in their own Vampire tab, as well being action buttons at the top, like spells.
  • +
  • Cloning a vampire no longer makes them lose their abilities.
  • +
  • Vampires can no longer hypnotize chaplains.
  • +
  • Being a full vampire (500+ total blood) actually makes you immune to holy water reliably now.
  • +
  • Some old away missions are back: Academy, Black Market Packers, Space Hotel, Station Collision, and Wild West. Go out and round up some hostiles!
  • +
  • Shuttle consoles now pair up to the engineering, mining, research, or labor shuttle when built or used before pairing, as long as the shuttle is near the console, or the shuttle is moved to be nearby.
  • +
+

monster860 updated:

+
    +
  • Mining station now has a podbay.
  • +
  • Ore scooping module for the spacepod.
  • +
  • Three mining lasers for spacepod: Basic, normal, and burst.
  • +
  • Shooting weapons south or west of spacepod will actually hit adjacent targets now, and won't shoot through walls anymore.
  • +
+

taukausanake updated:

+
    +
  • Mice can now be picked up like diona
  • +
+ +

08 March 2016

+

Crazylemon64 updated:

+
    +
  • Slime people are now more vulnerable to low temperatures.
  • +
  • Slime people are able to slowly regrow limbs at a high nutrition cost.
  • +
  • Slime people now slowly shift color based on reagents inside of them - disabled by default, toggle it with an IC verb
  • +
  • Slime people's cores are more vulnerable to damage
  • +
  • Species-related abilities now properly are removed - no more vox hair stylists, unfortunately.
  • +
+

Fethas updated:

+
    +
  • the nest buckle now looks for the right organ path
  • +
  • Fixed some sprites.
  • +
  • No more putting no drops in rechargers,
  • +
+

Fox McCloud updated:

+
    +
  • Implement's goon's gibbing sound
  • +
  • Implement's goon's gibbing sound for robots/silicons
  • +
  • Removes old gibbing sound
  • +
+

Spacemanspark updated:

+
    +
  • Lazarus Injector's can now be emagged to activate their special features, alongside using EMPs on them.
  • +
+

Tastyfish updated:

+
    +
  • Mimes now have a new ore, Tranquillite, used to bring peace and quiet to the station.
  • +
  • There are also permanent invisible walls and silent floors that can be made from tranquillite.
  • +
  • The Recitence mech is now buildable!
  • +
  • The Recitence mech is now playable!
  • +
  • Mid-round selection for various creatures and antagonists now consistently asks permission.
  • +
+

TheDZD updated:

+
    +
  • Adds justice helmets with flashing lights and annoying sirens.
  • +
  • Adds crates containing said helmets.
  • +
  • Also includes a version of the helmet that can only be spawned by admins, and just has a single red light in the center instead of the stereotypical police blinkers.
  • +
+

monster860 updated:

+
    +
  • Space pod transitions are now fixed.
  • +
+ +

07 March 2016

+

Crazylemon64 updated:

+
    +
  • People with VAREDIT can now write matrix variables
  • +
  • People with VAREDIT can now modify path variables
  • +
  • Refactors the variable editor code somewhat.
  • +
  • The buildmode area tool now shows reticules of what you've selected.
  • +
  • Switching mobs while using the buildmode tool no longer screws up your UI.
  • +
  • Refactors buildmode so it's no longer a special-case system.
  • +
  • Adds a copy mode to build mode, which lets you duplicate objects.
  • +
  • Any mob in buildmode can work at the fastest possible rate.
  • +
  • Fixed a problem where the icons of a person would not correctly update when changing gender.
  • +
  • One's hairstyle only adjusts on gender change if it's incompatible with your new gender.
  • +
  • Fixed a bug where a person's icon would only be updated if their sprite had a new layer added or removed.
  • +
  • You no longer lose your name when monkeyized and reverted - you'll still look like a monkey while you're a monkey, though.
  • +
  • Your organs will now match your gender when you are cloned.
  • +
  • Skeletons (when a body rots) no longer retain a fleshy torso.
  • +
  • Putting people in an active cryotube now produces the message on insertion, rather than release.
  • +
  • An EMP'd cloning pod will now display its sprites correctly.
  • +
+

FalseIncarnate updated:

+
    +
  • Water Balloons can be filled from more sources than just beakers and watertanks.
  • +
+

Fox McCloud updated:

+
    +
  • Fixes the "yeah" glasses so the sound doesn't vary and a message is displayed, on use
  • +
  • Noir mode only activates when the glasses are equipped to your actual eyes
  • +
  • Noir Glasses mode can be toggled on or off (defaults to off)
  • +
  • Mimes can no longer use spells and continue speaking
  • +
  • Mime abilities are now spells with proper icons
  • +
  • Mime wall now last 30 seconds, up from 5
  • +
  • forecfields/invisible walls now block air currents
  • +
  • Adds the Sleeping Carp scroll to the uplink for 17 TC
  • +
  • Fixes Shadowlings being able to use guns
  • +
  • Fixes sleeping carp scroll users being able to use guns
  • +
  • Fixes the Experimentor throwing one item at a time
  • +
  • Experimentor menu now automatically refreshes after use
  • +
  • Lowers surgery times across the board
  • +
  • Removes scalpels causing 1 damage on successful surgery
  • +
  • Removes random chance to fracture ribs on a successful surgery
  • +
  • Mining drills now have an edge
  • +
+

KasparoVy updated:

+
    +
  • Jackets who have the verb available but are not intended to be adjusted will not have the action button available.
  • +
  • You can now adjust breath masks while buckled into beds and chairs.
  • +
  • Known issues with adjusted jackets using the wrong sprites.
  • +
  • Blueshield coat in hand and item icons.
  • +
  • Hulks now rip apart adjustable and droppable jackets. The items stored in the jackets get dropped on the ground.
  • +
+

Tastyfish updated:

+
    +
  • Infrared emitters can now be rotated while already in an assembly via the UI popup.
  • +
  • The infrared emitter can no longer be hidden inside of boxes and still work.
  • +
  • The beach now has a border and is splashier.
  • +
  • Gives Psychiatrist a paper bin, clipboard, and multicolored pen.
  • +
  • Gives the Librarian / Jouralist a multicolored pen.
  • +
  • Gives the NT Representative a clipboard.
  • +
  • The ethanol-based neurotoxin drink is now called Neuro-toxin to avoid being confused with the deadly toxin.
  • +
+

VampyrBytes updated:

+
    +
  • Fixes emotes ending with s needing 2. Emotes now work with grammatical options eg ping or pings, squish or squishes
  • +
  • Updated emote help with missing emotes. Help will also show any species specific emotes for your current species
  • +
+ +

26 February 2016

+

FalseIncarnate updated:

+
    +
  • Chocolate can now make you fat, as expected.
  • +
+

Fox McCloud updated:

+
    +
  • stamina damage now regenerates slightly faster
  • +
  • Adds in whetstones for sharpening objects
  • +
  • Kitchen vendor starts off with 5 salt+pepper shakers
  • +
  • Can now point while lying or buckled
  • +
  • Fixes Capulettium Plus not silencing
  • +
  • Fixes slurring, stuttering, drugginess, and silences last half of what they should
  • +
+

KasparoVy updated:

+
    +
  • Jackets that start open are recognized as actually being open already now. This fixes a bug with certain items that don't have an open state, or cases where it ended up giving an item the wrong icon (one that didn't exist)
  • +
+

Spacemanspark updated:

+
    +
  • Fixes synthetics from giving off the proper message in the chat box when using the *yes and *no emotes.
  • +
+

Tastyfish updated:

+
    +
  • Wheelchairs, janicarts, and ambulances can now go through doors according to the user's driver's access.
  • +
+ +

24 February 2016

+

Crazylemon64 updated:

+
    +
  • The defib should be more reliable on people who have ghosted
  • +
  • The defib will now give a message if the ghost is still haunting about
  • +
  • Attacking someone with an accessory will now let you put things on them without having to strip them.
  • +
  • Borers will now properly detach upon death of a mob they are controlling
  • +
  • Borers can now see their chemical count while in control of a mob
  • +
  • Borers can now silently communicate with their host - this is not available to the host until the borer has either begun to communicate, or has taken control at least once - this is to avoid spoiling that the borer exists
  • +
  • Borers won't be able to talk out loud inside of a host, by default - they can remove this safeguard with a verb under their borer tab. Borer hivespeak is unaffected.
  • +
  • Borers infesting and hiding are now silent.
  • +
  • Made borer's chem lists more nicely formatted
  • +
  • No more superspeed attacking simplemobs
  • +
  • New players now show up properly under the "who" verb when used as an admin
  • +
  • Mining drones will now automatically collect sand lying around
  • +
  • RIPLEYs can now drill asteroid turfs for sand
  • +
  • You can now load exosuit fuel generators with items containing their material - this means you can fuel yourself off of ores, but this will be highly inefficient and cost you mining points later on, as you can't take fuel back out.
  • +
  • You can now load the fuel generators from an ore box.
  • +
  • The plasma generator now produces 3x as much power from the same amount of fuel - this lets it even remotely compete with the uranium generator.
  • +
  • You can now light cigarettes off of burning mobs.
  • +
  • Exosuit tracking beacons now fit in boxes - prior, they were far too large for even a backpack, as they shared the same size as all other mecha equipment
  • +
  • Miners can now collect ore by walking over it with an ore satchel on.
  • +
+

FalseIncarnate updated:

+
    +
  • Adds prize tickets as a replacement for physical arcade prizes.
  • +
  • Adds a buildable prize counter to exchange tickets for prizes.
  • +
  • Adds a bike. Despite what Prof. Oak might claim, you can ride it indoors.
  • +
  • Adds colorful wallets, for that old school arcade pride.
  • +
  • Fixes accidental removal of plump helmet biscuit recipe.
  • +
  • Temporarily adds a prize counter to the bar (Cyberiad) or dorms (MetaStation), and adds a max upgrade one to the Ninja Holding Area (Cyberiad z2)
  • +
  • Fixes Metastation. Seriously fixed a lot, just read the PR description for the full list.
  • +
+

FlattestGuitar updated:

+
    +
  • Adds IPC alcohol and a few derivative drinks
  • +
  • IPCs can now drink and be fed from glasses
  • +
+

Fox McCloud updated:

+
    +
  • Laser eyes mutation no longer drains nutrition
  • +
  • splits the EMP kit into two things: the standard EMP kit (2 grenades and an implant), and the EMP flashlight by itself
  • +
  • nerfs heart attacks so they do less damage
  • +
  • Pickpocket gloves now put the item you strip into your hands as opposed to the floor
  • +
  • Picketpocket gloves can now silently strip accessories
  • +
  • Pickpocket gloves will no longer give a message for messing up a pickpocket
  • +
+

KasparoVy updated:

+
    +
  • Adjusting masks while they are not on the face will no longer turn off internals.
  • +
  • Adjusting masks while they are not on the face will now cause the mask to hide/reveal the wearer's identity the next time it's worn as intended.
  • +
  • Adds the ability to open/close bomber jackets.
  • +
  • Adds a security bomber jacket. This jacket inherits the protection and storage capabilities as a standard Security vest with additional bomber jacket benefits.
  • +
  • Adds UI button in top left of screen for jacket adjustment.
  • +
  • Replaces the standard bomber jacket in the Pod Pilot bay with the Security version.
  • +
  • Centralizes jacket/coat adjustment handling.
  • +
  • All jackets start closed by default.
  • +
  • Geneticist duffelbag on-mob sprite (for all species).
  • +
  • Vox-fitted backpacks, satchels, ERT backpacks, duffelbags and defib unit.
  • +
  • Refactors back-item icon generation.
  • +
  • Typo in the description of Santa's sack.
  • +
  • Missing punctuation and gender macros in the description of the bag of holding.
  • +
  • The tweak to back-icon generation fixes a bug where the wrong sprite name was being used to generate back-item icons.
  • +
+

PPI updated:

+
    +
  • Adds the ability to hide papers in vents. You can now leave a romantic love letter, exchange information in secret, or hide papers infused with the power of nar'sie from sight.
  • +
+

Regen1 updated:

+
    +
  • Adds the Immolator laser gun, a modified laser gun with 8 shots that will ignite mobs, can be made in R&D
  • +
+

Spacemanspark updated:

+
    +
  • Adds *yes and *no emotes to Synthetics. Glory to Synthetica.
  • +
+

Tastyfish updated:

+
    +
  • The PDA system has been completely redone behind the scenes! It should be functionally similar, although there is now a Home and Back button at the bottom as appropriate.
  • +
  • All of the heads now have multicolored pens.
  • +
  • EngiVend now has 10 camera assemblies.
  • +
  • Borgs can now use vending machines.
  • +
  • There are now picture frames that can be made from the autolathe or wood planks for papers, photos, posters, and canvases!
  • +
+

pinatacolada updated:

+
    +
  • Makes the Protect Station AI law board no longer consider people that damage the station crew, instead of human
  • +
+

ppi updated:

+
    +
  • When revealed Revenants will not be able to move at the maximum move speed, nor be able to pass through any solid object, like walls, windows, grills, computers and mechs.
  • +
+ +

13 February 2016

+

Crazylemon64 updated:

+
    +
  • Relaxes the check on what atoms you can follow to any movable atom
  • +
  • Mages are now more ragin
  • +
  • Admins can now adjust the total number of wizards at runtime by tweaking either max_mages, or players_per mage
  • +
+

DaveTheHeadcrab updated:

+
    +
  • Adds new worn icons for duffelbags to better reflect their size, compliments of WJohn at /tg/
  • +
+

FalseIncarnate updated:

+
    +
  • Adds burritos, made from cutlets, beans, rice, capsacin oil (hotsauce), cheese, and flat dough (because we lack proper tortillas) in the microwave.
  • +
  • Adds chimichangas. You know you want a deep-fried burrito.
  • +
+

Fox McCloud updated:

+
    +
  • Updates some spell icons with better/higher quality icons
  • +
  • Updates unarmed attacks to allow for more customization
  • +
  • Updates martial arts so they factor in specie's attack messages and sounds
  • +
  • Re-balances Sleeping Carp fighting style
  • +
  • Re-balances Bo Staff
  • +
  • Rebalances Golem: they should now be spaceproof, fire+cold proof, rad proof, virus immune, clonable, parapen+syringe gun immune, deal increased melee damage. Their armor has been reduced to 55 melee across the board, their slip immunity removed, pain immunity removed, and they're slightly slower
  • +
  • Fixes Ei Nath generating two brains
  • +
  • Ensures the Necromatic Stone generates actual skeletons
  • +
  • Can now strip PDA/IDs from Golems
  • +
  • Fixes sleeping carp grab not being an instant aggressive grab
  • +
  • Fixes an exploit with declaring war on the station
  • +
+

KasparoVy updated:

+
    +
  • Orange and purple bandanas for all station species.
  • +
  • The ability to colour bandanas with a crayon in a washing machine.
  • +
  • Refactors the bandana adjustment system.
  • +
  • Minor adjustments to Tajaran and Unathi bandana east/west sprites.
  • +
  • Adjusting a bandana will now take if off of your head/face and put it in an available hand. If both hands are available, it goes in the selected hand.
  • +
  • Adjusting a coloured bandana will no longer revert it to the original coloured icons anymore.
  • +
  • Adjusting a bandana from mask-style to hat-style means the bandana won't obscure your identity anymore.
  • +
  • Greys now use re-positioned smokeables. They no longer smoke out the eyes.
  • +
+

TheDZD updated:

+
    +
  • Fixes spacepods being able to shoot through walls.
  • +
  • Lowers spacepod weapons fire delay.
  • +
  • Increases spacepod weapons energy costs.
  • +
  • Makes spacepods move at speeds not rivaling those of photon beams. They are now a hair bit faster than a person with a jetpack.
  • +
  • Reduces battery costs for spacepod movement.
  • +
+ +

10 February 2016

+

Crazylemon64 updated:

+
    +
  • The cloner now checks for NO_SCAN on the brain when scanning - unclonable species are now truly unclonable. You are still able to revive them with a brain transplant and a defib, however.
  • +
  • A tier-4 DNA scanner linked to a cloning system will now be able to reproduce a body from a brain's DNA, in event of the original corpse being gibbed or similar.
  • +
  • Species with organic limbs and NO_BLOOD will no longer bleed (though still on hit - write that off as "bone powder")
  • +
  • Skeletons now lack internal organs, except for the runic mind which exists in their head - an analogue for the brain
  • +
  • Skeletons that drink milk will be regenerated at a moderate pace, have a small chance of mending bones, and will praise the great name of mr skeltal
  • +
  • Adds a reagent system for species reacting to specific reagents
  • +
  • Slime People can now select from all human hairstyles, and their "hair" will be tinted a shade of their body.
  • +
  • Increases the frequency of the cortical borer event.
  • +
  • People with borers cannot commit suicide - this applies to a controlling borer, too.
  • +
  • Borers can no longer overdose their hosts.
  • +
  • Borers can now inject Saline-Glucose, Spaceacillin, Hydrocodone, Mitocholide, Salbutamol, Capulettium+, and Charcoal. Styptic was removed, as it's pathetic at healing when directly injected. Salicyclic acid was removed too, as its functionality is duplicated by both hydrocodone and saline-glucose.
  • +
  • A mind trapped by a cortical borer can now understand things it could understand when normally in its body.
  • +
  • Changes chemistry's welding tank to a wall-mounted version, to increase the room available.
  • +
  • You can now gib butterflies and lizards with a knife
  • +
  • Ghosts can now follow mecha
  • +
  • You can now access an R&D console by emagging it - it did nothing before.
  • +
  • Walls will now properly smooth and show damage.
  • +
  • Fixes the dialog that occurs when the AI shuts off to actually do what it says it does
  • +
+

Fox McCloud updated:

+
    +
  • Fixes not being able to attach IEDs to beartraps
  • +
  • Can no longer spamclick someone to death using headslamming on a toilet/urimal
  • +
  • Toilet/urinal headslamming now plays a sound
  • +
  • Toilet headslamming damage reduced slightly
  • +
  • Can now fill open reagent containers in a toilet to receive "toilet water".
  • +
  • No more message spam when someone fills a container using a sink
  • +
  • Can now wash your face using a sink, which washes away lipstick and wakes you up slightly
  • +
  • Washing things will now use progress bars
  • +
  • Ensures consuming a single syndicate donk pocket won't get you addicted to meth
  • +
  • Kinetic Accelerators and E-bows automatically reload
  • +
+

Glorken updated:

+
    +
  • Added a Knight Arena for Holodeck.
  • +
  • Added red and blue claymore sprites.
  • +
  • Changed overrided to overrode when emagging Holodeck computer.
  • +
+

KasparoVy updated:

+
    +
  • Vox versions of the Officer SWAT sechailer + HOS SWAT sechailer + Warden SWAT sechailer.
  • +
  • Resprited versions of most Human masks to fit Unathi, Tajara and Vulpkanin.
  • +
  • Warden now gets their own version of the SWAT sechailer in their locker.
  • +
  • HOS now gets the appropriate version of the SWAT sechailer in their locker.
  • +
  • Repositioned smokeables now available for Vox, Unathi, Tajara and Vulpkanin.
  • +
  • Properly shades Vox bandana down-state sprites.
  • +
  • Readds Tajaran bald hairstyle.
  • +
  • Alternate style of non-Human breath mask (incl. surgical/sterile mask) down-state positioning.
  • +
  • Corrects all non-Human species' breath mask (incl. surgical/sterile mask) down-state icons to use the right position style.
  • +
  • Minor adjustments to Tajaran breath mask up-state sprites.
  • +
+

PPI updated:

+
    +
  • Adds a reconnect button to the File menu in the client.
  • +
  • Adds head patting
  • +
+

Regen updated:

+
    +
  • Powersink can now drain a lot more power before going boom
  • +
  • Buffed the powersinks drain rate
  • +
  • Buffed explosion from an overloaded powersink, try to find it instead of overloading the grid.
  • +
  • Admin log warning before the powersink explodes
  • +
+

Spacemanspark updated:

+
    +
  • Miners can now utilize the power of mob capsules to take along their lazarus injected mining creatures!
  • +
  • Store your Pokemo- er, sorry, I mean mining mobs that you've captured in the lazarus capsule belt.
  • +
+

Tastyfish updated:

+
    +
  • Species that don't breathe can kill themselves now!
  • +
  • Suicide messages are now catered to your species.
  • +
  • Shortened the default pill & patch name when using the ChemMaster.
  • +
  • The chaplain now has a service radio headset, as Space Jesus intended.
  • +
+

TheDZD updated:

+
    +
  • When Ahelping, "Question" is now "Mentorhelp" and "Player Complaint" is now "Adminhelp."
  • +
  • Mentorhelps and PM replies from mentors appear in a bold aqua blue color.
  • +
  • Adminhelps and PM replies from admins appear in a bold bright red color.
  • +
  • PM replies from players appear in a dull/dark purple color.
  • +
  • Adds admin attack log to players being converted to cult.
  • +
  • Adds shadowling thrall jobbans.
  • +
  • Jobbanned players who are converted to shadowling thrall, revolutionary, or cultist will have the control of their body offered up to eligible ghosts.
  • +
+ +

31 January 2016

+

Crazylemon64 updated:

+
    +
  • Syndicate borgs can now interact with station machinery
  • +
  • People with slime people limbs can now *squish
  • +
  • Skrell's vulnerability to alcohol is checked on their liver, now - a liver transplant will let them take alcohol like a champ - lacking a liver will have the same effect as being a skrell, when drinking
  • +
+

FalseIncarnate updated:

+
    +
  • Adds in the Magic Eight Ball toy, found in Claw Game prize orbs.
  • +
  • Adds in the Magic Conch Shell, an admin-only shell of power.
  • +
+

Fox McCloud updated:

+
    +
  • Updates Summon Guns and Magic to include many of the new guns
  • +
  • Summon Guns/Magic can no longer be used during Ragin' Mages
  • +
+

Tastyfish updated:

+
    +
  • The emergency shuttle status in the Status tab now has ETA/ETD/etc like before.
  • +
  • Code Gamma+ now has a 5 minute emergency shuttle call, like Red.
  • +
+

pinatacolada updated:

+
    +
  • Adds NanoUI to the operating computer
  • +
  • Adds health announcing, critical and oxygen damage aural alerts to the computer, with a menu to selectively turn them on and off
  • +
+ +

29 January 2016

+

Crazylemon updated:

+
    +
  • The DNA scanner has now undergone a seminar to recognize fake identities; It will now scan the actual person's identity, rather than their disguise (read: wearing a mask with or without someone else's ID).
  • +
  • Matter eater now allows you to eat humans as if you were fat.
  • +
  • Eating mobs with an aggressive grab now generates attack logs.
  • +
+

Crazylemon64 updated:

+
    +
  • For a short while, there was a clerical error where all AI communications equipment was replaced with bananas. This has now been fixed.
  • +
  • Ghosts can now see the contents of smartfridges and look at the drone console
  • +
  • Humans now only produce one message when shaken while SSD
  • +
  • The supermatter no longer will irradiate everyone, everywhere, when it explodes.
  • +
  • Writing on paper will now add hidden admin fingerprints, so that you can't forge mean notes in someone else's name.
  • +
  • Brains are no longer able to escape their brain by being a sorcerer.
  • +
  • Astral projecting with other runes on the same tile will now no longer prevent you from re-entering
  • +
  • Voxxy that is become ex-voxxy no longer carry voxxy appearance! yaya!
  • +
+

FalseIncarnate updated:

+
    +
  • Allows plants to be identified as enhanced*. Enhancing plants results from using reagents (like saltpetre) that affect the stats of a seed instead of using mutagens/machines. *May not meet standards for being classified as "organic produce". (This was already possible, just renames enhanced plants for easier differentiation)
  • +
+

Fox McCloud updated:

+
    +
  • Fixes mutadone not working with some genetic mutations
  • +
  • Fixes banana honk and silencer being alcoholic
  • +
  • Fixes Kahlua being non-alcoholic
  • +
  • Fixes polonium not metabolizing
  • +
  • Fixes being able to receive free unlimited boxes from the Merchandise store
  • +
  • Adds in wooden bucklers
  • +
  • Re-adds roman shield to the costume vendor
  • +
  • Buffs Riot shield damage from 8 to 10
  • +
  • Adds in a Skeleton race
  • +
  • Tweaks the skeletons colors to be more realistic and to blend in less with the floor
  • +
  • Adds in lichdom spell for the wizard
  • +
  • Adds in lesser summon guns spell for wizard
  • +
  • adds in Mjolnir and the singularity hammer as weapons the wizard can purchase
  • +
  • Wizard can purchase the charge spell from the spell book
  • +
  • Wizard can purchase a healing staff from the spell book
  • +
  • Tweaks and lowers spell costs of utility spells for wizard
  • +
  • Re-organizes the spellbook to be better divided into categories and have a better window size
  • +
  • Knock now opens+unlocks lockers
  • +
  • Magic Missile has a slightly longer cooldown and no longer deals damage, but has a lower cooldown is upgraded
  • +
+

KasparoVy updated:

+
    +
  • Navy blue Centcom Officer's beret for use by the Blueshield.
  • +
  • Adds the new navy blue beret to the Blueshield's locker.
  • +
  • Gives the Blueshield's berets (black and navy blue) the exact same strip delay and armour as the Security Officer's beret.
  • +
  • Adds TG energy katana back and belt sprite.
  • +
  • Bo staff back sprite.
  • +
  • Adjusts energy katana sprites to make the weapon stand out a bit more from the regular katana.
  • +
  • Cutting open the toes of footwear so species with feet-claws can wear them.
  • +
  • Toeless jackboots.
  • +
  • Cleans up glovesnipping and lighting a match with a shoe.
  • +
  • Lighting a match with a shoe produces a more appropriate message, handled at the same standard as glove-snippingboot-cutting.
  • +
+

Tastyfish updated:

+
    +
  • Cargonia now has its own section in the manifest.
  • +
+

TheDZD updated:

+
    +
  • Due to budget cuts and reports of operatives accidentally firing enough bullets to reach a state of what our scientists refer to as "enough dakka," Syndicate High Command has decided to restore the Syndicate Strike Team arsenal to using standard-issue L6 SAW ammunition.
  • +
+ +

24 January 2016

+

KasparoVy updated:

+
    +
  • Fixes markings overlaying underwear.
  • +
  • Nude icon in underwear.dmi
  • +
  • Fixes Vox robes not using the correct on-mob sprites.
  • +
  • Fixes unreported bug where there was a slim chance during character preview icon generation that a character with Security Officer set to high would get rendered with either the wrong beret sprite or no beret sprite at all.
  • +
  • Fixes an issue where Sigholt's fluff beret wasn't using the correct sprites.
  • +
+

Tastyfish updated:

+
    +
  • Passively power-consuming borg modules, such as the peacekeeper movement and shield module, won't spam the user infinitely if they're low on power anymore.
  • +
+ +

23 January 2016

+

Fox McCloud updated:

+
    +
  • Removes Vampire HUD
  • +
  • moves the Vampire blood counter to a more easy to see location
  • +
  • Adds in a Changeling chemical counter display
  • +
  • Adds in a Changeling sting counter display
  • +
  • Vampire total blood and usable blood will now appear under status
  • +
  • Changes vampire blood display to be similar to ling chemical counter
  • +
  • Fixes unnecessary toxin damage being dealt on severe bloodloss
  • +
  • Fixes human mobs not receiving proper random names
  • +
  • Adds in knight armor
  • +
  • Grants the chaplain a set of crusader knight armor
  • +
  • Adds in cult-resistant ERT paranormal space suit
  • +
  • Allows the Chaplain to convert his null rod into a holy sword with crusader knight armor
  • +
  • Chaplain's closet is now a secure closet
  • +
  • Adds in Assault Gear crate to cargo
  • +
  • Adds in military assault belt
  • +
  • Adds in spaceworthy swat suits
  • +
  • tweaks bandolier to hold 2 additional shotgun shells
  • +
  • bartender starts off with +2 additional shells
  • +
  • Reduces the cost of the space suit crate and doubles its contents
  • +
  • Refactors knives so their behavior is more universal
  • +
  • Fixes Hulk not properly being removed when your health drops below a threshold
  • +
  • Fixes flickering vision in a mining mech
  • +
+

Tastyfish updated:

+
    +
  • Poly has taken a seminar on the latest trends in engine operations.
  • +
  • Player-controller parrots can now hear their headsets.
  • +
+

Tigerbat2000 updated:

+
    +
  • The nuclear disk escaping on the shuttle no longer counts as a syndicate minor victory.
  • +
  • Cultists can once again actually greentext the escape objective.
  • +
+ +

20 January 2016

+

DarkPyrolord updated:

+
    +
  • Adds in hardsuit sprites for Vulpkanin
  • +
+

FalseIncarnate updated:

+
    +
  • Allowed cheap lighters and individual matches to be put into cigarette packages at the cost of cigarette space.
  • +
  • Matches can now be lit and put out by striking the match on your shoes. Good for if you lose that matchbox, or want to just feel cool.
  • +
+

Fox McCloud updated:

+
    +
  • Fixes brute damage on weapons not knocking people down.
  • +
  • Tweaks implant behavior to be more consistent and unified.
  • +
  • Lowers the pAI cooldown from 60 seconds to 5 seconds.
  • +
  • Raw telecrystal can now be used to charge uplink implants.
  • +
  • Fixes being unable to holster the pulse pistol
  • +
  • Fixes being able to holster shotguns
  • +
+

KasparoVy updated:

+
    +
  • Improved shading on all Vulpkanin hardsuit tails.
  • +
  • Vulpkanin hardsuit helmet respriting (colour tweaks).
  • +
  • Vulpkanin hardsuit helmets with proper flashlight-on sprites.
  • +
+

Tastyfish updated:

+
    +
  • The ID computer Access Report printout now separates the access list with commas so it's actually readable.
  • +
  • The ID computer Access Report printout isn't blank if you don't have an authorization card in anymore.
  • +
  • In the supply ordering & shuttle consoles, one can now cancel an order at either the Reason or Amount input dialogs.
  • +
  • Table flipping uses correct sprites.
  • +
+

TheDZD updated:

+
    +
  • Adds world.Topic() handling so that users are notified in-game when pull requests are opened, closed, or merged on the Github repo.
  • +
+ +

18 January 2016

+

Crazylemon updated:

+
    +
  • New classes of shapeshifters have been sighted around the NSS Cyberiad...
  • +
  • Wizards now can't teleport to other antag spawn points.
  • +
  • Removes an extruding pixel from the left-facing IPC glider monitor sprite.
  • +
  • Ragin' Mages now spawn every 7 minutes, instead of 5. Admins can further adjust this by modifying the 'delay_per_mage' variable.
  • +
  • Ragin' Mages are now made with 100% less in-use souls (Apprentices won't have their consciousness yoinked).
  • +
  • It takes half an hour for the REAL chaos of ragin' mages to start, for at least a semblance of normality.
  • +
+

Dave The Headcrab updated:

+
    +
  • Adds the advanced energy revolver, toggles between taser and laser modes.
  • +
  • Removes the detective's revolver from the blueshield's locker.
  • +
  • Changes the taser the blueshield starts with into an advanced energy revolver.
  • +
+

Deanthelis updated:

+
    +
  • Added the ability for the Magnetic Gripper to pick up and place light tiles.
  • +
+

Fethas updated:

+
    +
  • Readds the hud icon showing up for master and servent
  • +
  • adds mindslave datum hud thingy based on TGs gang huds
  • +
+

Fox McCloud updated:

+
    +
  • Fixes not being able to add/remove Weapon Permit from IDs.
  • +
  • Fixes the energy sword being invisible in-hand when turned on.
  • +
  • Fixes the telebaton being invisible in-hand when extended.
  • +
  • Fixes eye-stabbing not having an attack animation or hitsound.
  • +
  • Fixes some kitchen utensils playing the wrong hit-sound and playing twice in some cases.
  • +
  • Fixes the butcher cleaver sprite being backwards.
  • +
  • Fixes the telebaton sprite being missing from the side.
  • +
  • Fixes the meat cleaver being invisible in-hand.
  • +
  • Corrects some grammatical descriptive errors for the elite syndicate hardsuit.
  • +
  • completely overhauls implants to TG's standards.
  • +
  • Adds storage implant.
  • +
  • Adds microbomb and macrobomb implants.
  • +
  • Adds in support for removing implants directly into cases.
  • +
  • Removes Bay style explosive implants.
  • +
  • Removes compressed matter implants.
  • +
  • Tweaks the uplink to reflect removal of the old implants and inclusion of the new.
  • +
  • Fixes/cuts down on the lag caused by monkey cubes.
  • +
+

Jey updated:

+
    +
  • Inflatable walls and door can now be deflated by altclicking them
  • +
  • Fixed lag from expanding multiple monkeycubes at once.
  • +
+

KasparoVy updated:

+
    +
  • Adds blank icons with standardized timings for species tail wagging, used in icon generation.
  • +
  • Fixes tails overlapping arms/limbs + gloves, etc. when facing EAST or WEST.
  • +
  • Ensures tails will overlap stuff as normal only when facing NORTH so as to avoid unwanted interference with the base sprite.
  • +
  • Tails now appear in ID cards, overlays things correctly.
  • +
  • Tails now overlay and are overlaid by things correctly in preview icons.
  • +
  • Modifies the positioning of tail icon generation in the ID card preview icon generation file.
  • +
  • Modifies the positioning of tail icon generation in the player preferences preview icon generation file.
  • +
  • Breaks limb generation into its own layer, breaks tail generation into a second layer that can be overlaid by limbs.
  • +
  • If the user's species is flagged to have a tail that is overlapped, TAIL_LAYER will now overlay the NORTH direction sprite of a tail now, while TAIL_UNDERLIMBS_LAYER gets all remaining directions. Otherwise icons are generated in the traditional manner.
  • +
  • Adjusts the Unathi right arm east direction and animated tail sprites, recolouring a random pixel and fixing a floating tail respectively.
  • +
  • Adjusts position of tail layer such that tails' north direction sprites will overlay backpacks (more importantly, satchel straps).
  • +
  • Accommodates admin-overrides to the body_accessory species check by setting the default animation template to Vulpkanin.
  • +
  • Adjusts north-direction Unathi static tail sprite, now attaches to the body in the correct location.
  • +
  • Adds some TG underwear.
  • +
  • Adds an NV science goggles worn sprite.
  • +
  • Ports Bay/TG berets.
  • +
  • Adjusts beret sprite, recolours strange orange pixels.
  • +
  • Adjusts NV science goggles object icon. Removed strange border and centered it.
  • +
  • Ports Polaris' PRs 761 and 778, brings over Ragnie's awesome Ward-Takahashi prosthetics.
  • +
+

Kyep updated:

+
    +
  • Changing level to gamma/delta/epsilon now displays a special gamma/delta/epsilon sprite on status monitors
  • +
  • Changing level to green/blue now clears the status monitors, so they no longer show higher alert levels after the level is changed
  • +
+

NTSAM updated:

+
    +
  • Added a rainbow IPC screen.
  • +
+

PPI updated:

+
    +
  • Modifies the effective time limit to activate the Nuclear Challenge as Nukeops from two minutes to seven minutes
  • +
+

Tastyfish updated:

+
    +
  • The QM now actually has a QM stamp instead of a fake one, as well as an approved and denied stamp.
  • +
  • New area named 'Genetics Maintenance' solidifying/relabelling the confusing area between the morge and Mech Bay as being fully maintenance again, but working correctly and with proper doors.
  • +
  • Fixed a few maintenance door names to be in parity to the rest of the station.
  • +
  • Added the ability to print the records photo of a crew member from a security records console. Useful for Wanted notices!
  • +
+

Tigercat2000 updated:

+
    +
  • You can no longer use the gibber for monkies.
  • +
  • Cleaned up gibber.dm styling.
  • +
  • The fire alarm now uses NanoUI, with color coded alert levels.
  • +
  • Upgraded NanoUI (again), fancy FontAwesome icons.
  • +
  • Didn't add any butts. Yet.
  • +
+ +

13 January 2016

+

Fox McCloud updated:

+
    +
  • Fixes Rezadone not clearing mutated organs.
  • +
  • Clone damage immunity removed from Slime People, Shadowlings, Golems, and Vox
  • +
  • Explosions will no longer destroy things underneath turfs until the turf is exposed.
  • +
  • fixes a runtime related to revolver spinning.
  • +
  • fixes server loading taking an abnormally long time.
  • +
+

Kyep updated:

+
    +
  • Blob, vine and virus outbreaks are now more clearly labeled as such, to avoid people confusing them with each other
  • +
+

Tastyfish updated:

+
    +
  • NT Rep fountain pens and magistrate gold pens can now write in 5 different colors. The IAA gets a cheap plastic equivalent.
  • +
+ +

11 January 2016

+

CrAzYPiLoT updated:

+
    +
  • Fixes the footsteps sounds to the fullest.
  • +
+

Crazylemon updated:

+
    +
  • Bomb guardians now automatically notify their master when they've set something to boom, so there's less accidental friendly fire
  • +
  • Bomb guardians are only notified that their trap failed, if it ACTUALLY FAILED.
  • +
  • Bomb guardians now are more aware of what is primed to explode.
  • +
  • Bomb guardian summoners can now defuse their guardian's bombs without harm.
  • +
  • Brought RAGIN' MAGES back up to function.
  • +
+

Dave The Headcrab updated:

+
    +
  • Added a new icon for the soy and cafe latte drinks. Icons courtesy of Full Of Skittles, resident overlord of art.
  • +
+

Fox McCloud updated:

+
    +
  • Re-arranges the armory and changes its contents minorly.
  • +
  • Adds in rubbershot ammo boxes.
  • +
  • Fixes Mutadone incurring a massive cost on the server.
  • +
  • Positronic brains can no longer speak binary.
  • +
  • Positronic brains can be prevented from speaking (or allowed) by toggling their speaker on/off.
  • +
  • IPC's positronic brains start off toggled off.
  • +
  • Fixes the supermatter announcement causing massive amounts of server lag.
  • +
  • Adds in tradable telecrystals.
  • +
+ +

08 January 2016

+

Crazylemon updated:

+
    +
  • Fully enables a system to allow species to have unique procs and verbs that come and go with the species.
  • +
  • IPCs lose their change monitor verb when changing species now. Gone are the days of recalling a past IPC life to perform self-barbery! Oh, woe is me!
  • +
  • Sleepers and Body Scanners will now reliably work when rotated
  • +
  • SSD humans should be asleep more reliably now.
  • +
+

Dave The Headcrab updated:

+
    +
  • Nerfs the damage the Detective's revolver does from 15 brute to 5 brute.
  • +
  • Adds a 300 round capacity buckshot magizine that fits into the L6 Saw.
  • +
  • Adds a 25 round capacity 40mm HE magizine that fits into the L6 Saw.
  • +
  • Adds the 'Devastator' L6 SAW, starts off loaded with the buckshot magizine.
  • +
  • Gives the SST the 'Devastator' L6 Saw, and one of each mag type in their bag.
  • +
+

FalseIncarnate updated:

+
    +
  • Plants will now begin to die over time if their age exceeds 5 times their TRAIT_MATURATION value.
  • +
  • Weed growth chance per process in trays has been slightly increased (Previously: 5% chance if no seed, 1% otherwise;Now: 6% / 3%).
  • +
  • Pest growth in trays has been slightly buffed. (Previously: 3% chance to increase by 0.1; Now: 5% chance to increase by 0.5)
  • +
+

Fethas updated:

+
    +
  • Due to Archmage Steve leaving the nya-cromantic stone near the microwave, the true power of the stone has been unleashed. Subjects of the stone are not only ressurected ... but resurrected as catgirls ... We fired steve.
  • +
+

Fox McCloud updated:

+
    +
  • fixes a bug relating to some brute/burn damage being dealt to human mobs.
  • +
  • Adds in overloading APCs, causing them to arc electricity to mobs in range.
  • +
  • Makes Engineering related APCs overload proof.
  • +
  • Implements the timestop spell.
  • +
  • Implements new sepia slime reaction which halts time in an AoE.
  • +
  • sentience potions no longer can make slimes sentient.
  • +
  • Removes Hulk instant stun.
  • +
  • Hulk damage increased.
  • +
  • Hulk wears off at a lower health threshold.
  • +
  • Fixes strange reagent not working on simple animals.
  • +
  • Reduces the amount shock damage and bounces for the Tesla engine.
  • +
  • Fixes Syndicate Cyborg's LMG being invisible.
  • +
  • Fixes the uplink kit having implanters that were both nameless and looked as if they had been used.
  • +
+

KasparoVy updated:

+
    +
  • Added the security gasmask, sexy mime mask, bandanas, balaclava, welding gas mask and wrestling masks for Vox. Added adjusted-state sprites for the Vox breath, medical, and surgical masks.
  • +
  • Removed a duplicate of the human balaclava sprite.
  • +
  • Modifies the Vox plague-doctor, fake moustache, sterile and medical mask sprites to fit the Vox anatomy and animates the Vox SWAT mask. Corrects the names of some Vox mask adjusted-state sprites.
  • +
+

Tastyfish updated:

+
    +
  • Fixed the pronouns in a few verbs and the door to 'Interrogation Observervtion'.
  • +
+

Tigercat2000 updated:

+
    +
  • Added 96x96 (3x) res option to icons menu
  • +
+ +

06 January 2016

+

Certhic updated:

+
    +
  • Corrected some air alarms so that atmos computer can access them
  • +
  • Bodyscanner now sees mechanical parts in internal organs
  • +
+

Crazylemon64 updated:

+
    +
  • Sleeping simple animals should tick down sleeping as normal - deaf simple mobs are no longer a thing
  • +
+

Tastyfish updated:

+
    +
  • Instruments now use NanoUI.
  • +
  • Corrected the blueshield mission briefing.
  • +
+ +

03 January 2016

+

TheDZD updated:

+
    +
  • Ports over changelog system from /tg/station.
  • +
+
+ +GoonStation 13 Development Team +
+ Coders: Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion
+ Spriters: Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said No
+
+
+

Creative Commons License
Except where otherwise noted, Goon Station 13 is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 License.
Rights are currently extended to SomethingAwful Goons only.

+

Some icons by Yusuke Kamiyamane. All rights reserved. Licensed under a Creative Commons Attribution 3.0 License.

+
+ + diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index e0f00de5a69..4775ba05121 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -1,1265 +1,1299 @@ -DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. ---- -2016-01-03: - TheDZD: - - rscadd: Ports over changelog system from /tg/station. -2016-01-06: - Certhic: - - bugfix: Corrected some air alarms so that atmos computer can access them - - bugfix: Bodyscanner now sees mechanical parts in internal organs - Crazylemon64: - - bugfix: Sleeping simple animals should tick down sleeping as normal - deaf simple - mobs are no longer a thing - Tastyfish: - - tweak: Instruments now use NanoUI. - - spellcheck: Corrected the blueshield mission briefing. -2016-01-08: - Crazylemon: - - rscadd: Fully enables a system to allow species to have unique procs and verbs - that come and go with the species. - - rscdel: IPCs lose their change monitor verb when changing species now. Gone are - the days of recalling a past IPC life to perform self-barbery! Oh, woe is me! - - bugfix: Sleepers and Body Scanners will now reliably work when rotated - - bugfix: SSD humans should be asleep more reliably now. - Dave The Headcrab: - - tweak: Nerfs the damage the Detective's revolver does from 15 brute to 5 brute. - - rscadd: Adds a 300 round capacity buckshot magizine that fits into the L6 Saw. - - rscadd: Adds a 25 round capacity 40mm HE magizine that fits into the L6 Saw. - - rscadd: Adds the 'Devastator' L6 SAW, starts off loaded with the buckshot magizine. - - rscadd: Gives the SST the 'Devastator' L6 Saw, and one of each mag type in their - bag. - FalseIncarnate: - - rscadd: Plants will now begin to die over time if their age exceeds 5 times their - TRAIT_MATURATION value. - - tweak: 'Weed growth chance per process in trays has been slightly increased (Previously: - 5% chance if no seed, 1% otherwise;Now: 6% / 3%).' - - tweak: 'Pest growth in trays has been slightly buffed. (Previously: 3% chance - to increase by 0.1; Now: 5% chance to increase by 0.5)' - Fethas: - - rscadd: Due to Archmage Steve leaving the nya-cromantic stone near the microwave, - the true power of the stone has been unleashed. Subjects of the stone are not - only ressurected ... but resurrected as catgirls ... We fired steve. - Fox McCloud: - - bugfix: fixes a bug relating to some brute/burn damage being dealt to human mobs. - - rscadd: Adds in overloading APCs, causing them to arc electricity to mobs in range. - - tweak: Makes Engineering related APCs overload proof. - - rscadd: Implements the timestop spell. - - rscadd: Implements new sepia slime reaction which halts time in an AoE. - - tweak: sentience potions no longer can make slimes sentient. - - tweak: Removes Hulk instant stun. - - tweak: Hulk damage increased. - - tweak: Hulk wears off at a lower health threshold. - - bugfix: Fixes strange reagent not working on simple animals. - - tweak: Reduces the amount shock damage and bounces for the Tesla engine. - - bugfix: Fixes Syndicate Cyborg's LMG being invisible. - - bugfix: Fixes the uplink kit having implanters that were both nameless and looked - as if they had been used. - KasparoVy: - - rscadd: Added the security gasmask, sexy mime mask, bandanas, balaclava, welding - gas mask and wrestling masks for Vox. Added adjusted-state sprites for the Vox - breath, medical, and surgical masks. - - rscdel: Removed a duplicate of the human balaclava sprite. - - tweak: Modifies the Vox plague-doctor, fake moustache, sterile and medical mask - sprites to fit the Vox anatomy and animates the Vox SWAT mask. Corrects the - names of some Vox mask adjusted-state sprites. - Tastyfish: - - spellcheck: Fixed the pronouns in a few verbs and the door to 'Interrogation Observervtion'. - Tigercat2000: - - rscadd: Added 96x96 (3x) res option to icons menu -2016-01-11: - CrAzYPiLoT: - - bugfix: Fixes the footsteps sounds to the fullest. - Crazylemon: - - rscadd: Bomb guardians now automatically notify their master when they've set - something to boom, so there's less accidental friendly fire - - bugfix: Bomb guardians are only notified that their trap failed, if it ACTUALLY - FAILED. - - rscadd: Bomb guardians now are more aware of what is primed to explode. - - rscadd: Bomb guardian summoners can now defuse their guardian's bombs without - harm. - - rscadd: Brought RAGIN' MAGES back up to function. - Dave The Headcrab: - - rscadd: Added a new icon for the soy and cafe latte drinks. Icons courtesy of - Full Of Skittles, resident overlord of art. - Fox McCloud: - - rscadd: Re-arranges the armory and changes its contents minorly. - - rscadd: Adds in rubbershot ammo boxes. - - bugfix: Fixes Mutadone incurring a massive cost on the server. - - tweak: Positronic brains can no longer speak binary. - - tweak: Positronic brains can be prevented from speaking (or allowed) by toggling - their speaker on/off. - - tweak: IPC's positronic brains start off toggled off. - - bugfix: Fixes the supermatter announcement causing massive amounts of server lag. - - rscadd: Adds in tradable telecrystals. -2016-01-13: - Fox McCloud: - - bugfix: Fixes Rezadone not clearing mutated organs. - - tweak: Clone damage immunity removed from Slime People, Shadowlings, Golems, and - Vox - - tweak: Explosions will no longer destroy things underneath turfs until the turf - is exposed. - - bugfix: fixes a runtime related to revolver spinning. - - bugfix: fixes server loading taking an abnormally long time. - Kyep: - - rscadd: Blob, vine and virus outbreaks are now more clearly labeled as such, to - avoid people confusing them with each other - Tastyfish: - - tweak: NT Rep fountain pens and magistrate gold pens can now write in 5 different - colors. The IAA gets a cheap plastic equivalent. -2016-01-18: - Crazylemon: - - rscadd: New classes of shapeshifters have been sighted around the NSS Cyberiad... - - bugfix: Wizards now can't teleport to other antag spawn points. - - bugfix: Removes an extruding pixel from the left-facing IPC glider monitor sprite. - - tweak: Ragin' Mages now spawn every 7 minutes, instead of 5. Admins can further - adjust this by modifying the 'delay_per_mage' variable. - - bugfix: Ragin' Mages are now made with 100% less in-use souls (Apprentices won't - have their consciousness yoinked). - - tweak: It takes half an hour for the REAL chaos of ragin' mages to start, for - at least a semblance of normality. - Dave The Headcrab: - - rscadd: Adds the advanced energy revolver, toggles between taser and laser modes. - - rscdel: Removes the detective's revolver from the blueshield's locker. - - tweak: Changes the taser the blueshield starts with into an advanced energy revolver. - Deanthelis: - - rscadd: Added the ability for the Magnetic Gripper to pick up and place light - tiles. - Fethas: - - bugfix: Readds the hud icon showing up for master and servent - - rscadd: adds mindslave datum hud thingy based on TGs gang huds - Fox McCloud: - - bugfix: Fixes not being able to add/remove Weapon Permit from IDs. - - bugfix: Fixes the energy sword being invisible in-hand when turned on. - - bugfix: Fixes the telebaton being invisible in-hand when extended. - - bugfix: Fixes eye-stabbing not having an attack animation or hitsound. - - bugfix: Fixes some kitchen utensils playing the wrong hit-sound and playing twice - in some cases. - - bugfix: Fixes the butcher cleaver sprite being backwards. - - bugfix: Fixes the telebaton sprite being missing from the side. - - bugfix: Fixes the meat cleaver being invisible in-hand. - - spellcheck: Corrects some grammatical descriptive errors for the elite syndicate - hardsuit. - - rscadd: completely overhauls implants to TG's standards. - - rscadd: Adds storage implant. - - rscadd: Adds microbomb and macrobomb implants. - - rscadd: Adds in support for removing implants directly into cases. - - rscdel: Removes Bay style explosive implants. - - rscdel: Removes compressed matter implants. - - tweak: Tweaks the uplink to reflect removal of the old implants and inclusion - of the new. - - bugfix: Fixes/cuts down on the lag caused by monkey cubes. - Jey: - - tweak: Inflatable walls and door can now be deflated by altclicking them - - bugfix: Fixed lag from expanding multiple monkeycubes at once. - KasparoVy: - - imageadd: Adds blank icons with standardized timings for species tail wagging, - used in icon generation. - - bugfix: Fixes tails overlapping arms/limbs + gloves, etc. when facing EAST or - WEST. - - bugfix: Ensures tails will overlap stuff as normal only when facing NORTH so as - to avoid unwanted interference with the base sprite. - - bugfix: Tails now appear in ID cards, overlays things correctly. - - bugfix: Tails now overlay and are overlaid by things correctly in preview icons. - - tweak: Modifies the positioning of tail icon generation in the ID card preview - icon generation file. - - tweak: Modifies the positioning of tail icon generation in the player preferences - preview icon generation file. - - tweak: Breaks limb generation into its own layer, breaks tail generation into - a second layer that can be overlaid by limbs. - - tweak: If the user's species is flagged to have a tail that is overlapped, TAIL_LAYER - will now overlay the NORTH direction sprite of a tail now, while TAIL_UNDERLIMBS_LAYER - gets all remaining directions. Otherwise icons are generated in the traditional - manner. - - tweak: Adjusts the Unathi right arm east direction and animated tail sprites, - recolouring a random pixel and fixing a floating tail respectively. - - tweak: Adjusts position of tail layer such that tails' north direction sprites - will overlay backpacks (more importantly, satchel straps). - - tweak: Accommodates admin-overrides to the body_accessory species check by setting - the default animation template to Vulpkanin. - - tweak: Adjusts north-direction Unathi static tail sprite, now attaches to the - body in the correct location. - - rscadd: Adds some TG underwear. - - rscadd: Adds an NV science goggles worn sprite. - - rscadd: Ports Bay/TG berets. - - tweak: Adjusts beret sprite, recolours strange orange pixels. - - tweak: Adjusts NV science goggles object icon. Removed strange border and centered - it. - - rscadd: Ports Polaris' PRs 761 and 778, brings over Ragnie's awesome Ward-Takahashi - prosthetics. - Kyep: - - rscadd: Changing level to gamma/delta/epsilon now displays a special gamma/delta/epsilon - sprite on status monitors - - bugfix: Changing level to green/blue now clears the status monitors, so they no - longer show higher alert levels after the level is changed - NTSAM: - - rscadd: Added a rainbow IPC screen. - PPI: - - tweak: Modifies the effective time limit to activate the Nuclear Challenge as - Nukeops from two minutes to seven minutes - Tastyfish: - - rscadd: The QM now actually has a QM stamp instead of a fake one, as well as an - approved and denied stamp. - - rscadd: New area named 'Genetics Maintenance' solidifying/relabelling the confusing - area between the morge and Mech Bay as being fully maintenance again, but working - correctly and with proper doors. - - spellcheck: Fixed a few maintenance door names to be in parity to the rest of - the station. - - rscadd: Added the ability to print the records photo of a crew member from a security - records console. Useful for Wanted notices! - Tigercat2000: - - rscdel: You can no longer use the gibber for monkies. - - spellcheck: Cleaned up gibber.dm styling. - - rscadd: The fire alarm now uses NanoUI, with color coded alert levels. - - tweak: Upgraded NanoUI (again), fancy FontAwesome icons. - - wip: Didn't add any butts. Yet. -2016-01-20: - DarkPyrolord: - - rscadd: Adds in hardsuit sprites for Vulpkanin - FalseIncarnate: - - rscadd: Allowed cheap lighters and individual matches to be put into cigarette - packages at the cost of cigarette space. - - rscadd: Matches can now be lit and put out by striking the match on your shoes. - Good for if you lose that matchbox, or want to just feel cool. - Fox McCloud: - - bugfix: Fixes brute damage on weapons not knocking people down. - - tweaks: Tweaks implant behavior to be more consistent and unified. - - tweak: Lowers the pAI cooldown from 60 seconds to 5 seconds. - - rscadd: Raw telecrystal can now be used to charge uplink implants. - - bugfix: Fixes being unable to holster the pulse pistol - - bugfix: Fixes being able to holster shotguns - KasparoVy: - - tweak: Improved shading on all Vulpkanin hardsuit tails. - - tweak: Vulpkanin hardsuit helmet respriting (colour tweaks). - - rscadd: Vulpkanin hardsuit helmets with proper flashlight-on sprites. - Tastyfish: - - tweak: The ID computer Access Report printout now separates the access list with - commas so it's actually readable. - - bugfix: The ID computer Access Report printout isn't blank if you don't have an - authorization card in anymore. - - rscadd: In the supply ordering & shuttle consoles, one can now cancel an order - at either the Reason or Amount input dialogs. - - bugfix: Table flipping uses correct sprites. - TheDZD: - - rscadd: Adds world.Topic() handling so that users are notified in-game when pull - requests are opened, closed, or merged on the Github repo. -2016-01-23: - Fox McCloud: - - rscdel: Removes Vampire HUD - - tweak: moves the Vampire blood counter to a more easy to see location - - rscadd: Adds in a Changeling chemical counter display - - rscadd: Adds in a Changeling sting counter display - - rscadd: Vampire total blood and usable blood will now appear under status - - tweak: Changes vampire blood display to be similar to ling chemical counter - - bugfix: Fixes unnecessary toxin damage being dealt on severe bloodloss - - bugfix: Fixes human mobs not receiving proper random names - - rscadd: Adds in knight armor - - rscadd: Grants the chaplain a set of crusader knight armor - - rscadd: Adds in cult-resistant ERT paranormal space suit - - rscadd: Allows the Chaplain to convert his null rod into a holy sword with crusader - knight armor - - tweak: Chaplain's closet is now a secure closet - - rscadd: Adds in Assault Gear crate to cargo - - rscadd: Adds in military assault belt - - rcsadd: Adds in spaceworthy swat suits - - tweak: tweaks bandolier to hold 2 additional shotgun shells - - tweak: bartender starts off with +2 additional shells - - tweak: Reduces the cost of the space suit crate and doubles its contents - - rscadd: Refactors knives so their behavior is more universal - - bugfix: Fixes Hulk not properly being removed when your health drops below a threshold - - bugfix: Fixes flickering vision in a mining mech - Tastyfish: - - rscadd: Poly has taken a seminar on the latest trends in engine operations. - - rscadd: Player-controller parrots can now hear their headsets. - Tigerbat2000: - - bugfix: The nuclear disk escaping on the shuttle no longer counts as a syndicate - minor victory. - - bugfix: Cultists can once again actually greentext the escape objective. -2016-01-24: - KasparoVy: - - bugfix: Fixes markings overlaying underwear. - - rscadd: Nude icon in underwear.dmi - - bugfix: Fixes Vox robes not using the correct on-mob sprites. - - bugfix: Fixes unreported bug where there was a slim chance during character preview - icon generation that a character with Security Officer set to high would get - rendered with either the wrong beret sprite or no beret sprite at all. - - bugfix: Fixes an issue where Sigholt's fluff beret wasn't using the correct sprites. - Tastyfish: - - bugfix: Passively power-consuming borg modules, such as the peacekeeper movement - and shield module, won't spam the user infinitely if they're low on power anymore. -2016-01-29: - Crazylemon: - - bugfix: 'The DNA scanner has now undergone a seminar to recognize fake identities; - It will now scan the actual person''s identity, rather than their disguise (read: - wearing a mask with or without someone else''s ID).' - - rscadd: Matter eater now allows you to eat humans as if you were fat. - - tweak: Eating mobs with an aggressive grab now generates attack logs. - Crazylemon64: - - bugfix: For a short while, there was a clerical error where all AI communications - equipment was replaced with bananas. This has now been fixed. - - tweak: Ghosts can now see the contents of smartfridges and look at the drone console - - tweak: Humans now only produce one message when shaken while SSD - - bugfix: The supermatter no longer will irradiate everyone, everywhere, when it - explodes. - - tweak: Writing on paper will now add hidden admin fingerprints, so that you can't - forge mean notes in someone else's name. - - bugfix: Brains are no longer able to escape their brain by being a sorcerer. - - bugfix: Astral projecting with other runes on the same tile will now no longer - prevent you from re-entering - - bugfix: Voxxy that is become ex-voxxy no longer carry voxxy appearance! yaya! - FalseIncarnate: - - tweak: Allows plants to be identified as enhanced*. Enhancing plants results from - using reagents (like saltpetre) that affect the stats of a seed instead of using - mutagens/machines. *May not meet standards for being classified as "organic - produce". (This was already possible, just renames enhanced plants for easier - differentiation) - Fox McCloud: - - bugfix: Fixes mutadone not working with some genetic mutations - - bugfix: Fixes banana honk and silencer being alcoholic - - bugfix: Fixes Kahlua being non-alcoholic - - bugfix: Fixes polonium not metabolizing - - bugfix: Fixes being able to receive free unlimited boxes from the Merchandise - store - - rscadd: Adds in wooden bucklers - - tweak: Re-adds roman shield to the costume vendor - - tweak: Buffs Riot shield damage from 8 to 10 - - rscadd: Adds in a Skeleton race - - tweak: Tweaks the skeletons colors to be more realistic and to blend in less with - the floor - - rscadd: Adds in lichdom spell for the wizard - - rscadd: Adds in lesser summon guns spell for wizard - - rscadd: adds in Mjolnir and the singularity hammer as weapons the wizard can purchase - - rscadd: Wizard can purchase the charge spell from the spell book - - rscadd: Wizard can purchase a healing staff from the spell book - - tweak: Tweaks and lowers spell costs of utility spells for wizard - - tweak: Re-organizes the spellbook to be better divided into categories and have - a better window size - - tweak: Knock now opens+unlocks lockers - - tweak: Magic Missile has a slightly longer cooldown and no longer deals damage, - but has a lower cooldown is upgraded - KasparoVy: - - rscadd: Navy blue Centcom Officer's beret for use by the Blueshield. - - rscadd: Adds the new navy blue beret to the Blueshield's locker. - - tweak: Gives the Blueshield's berets (black and navy blue) the exact same strip - delay and armour as the Security Officer's beret. - - rscadd: Adds TG energy katana back and belt sprite. - - rscadd: Bo staff back sprite. - - tweak: Adjusts energy katana sprites to make the weapon stand out a bit more from - the regular katana. - - rscadd: Cutting open the toes of footwear so species with feet-claws can wear - them. - - rscadd: Toeless jackboots. - - tweak: Cleans up glovesnipping and lighting a match with a shoe. - - tweak: Lighting a match with a shoe produces a more appropriate message, handled - at the same standard as glove-snippingboot-cutting. - Tastyfish: - - rscadd: Cargonia now has its own section in the manifest. - TheDZD: - - rscdel: Due to budget cuts and reports of operatives accidentally firing enough - bullets to reach a state of what our scientists refer to as "enough dakka," - Syndicate High Command has decided to restore the Syndicate Strike Team arsenal - to using standard-issue L6 SAW ammunition. -2016-01-31: - Crazylemon64: - - bugfix: Syndicate borgs can now interact with station machinery - - rscadd: People with slime people limbs can now *squish - - tweak: Skrell's vulnerability to alcohol is checked on their liver, now - a liver - transplant will let them take alcohol like a champ - lacking a liver will have - the same effect as being a skrell, when drinking - FalseIncarnate: - - rscadd: Adds in the Magic Eight Ball toy, found in Claw Game prize orbs. - - rscadd: Adds in the Magic Conch Shell, an admin-only shell of power. - Fox McCloud: - - rscadd: Updates Summon Guns and Magic to include many of the new guns - - tweak: Summon Guns/Magic can no longer be used during Ragin' Mages - Tastyfish: - - rscadd: The emergency shuttle status in the Status tab now has ETA/ETD/etc like - before. - - tweak: Code Gamma+ now has a 5 minute emergency shuttle call, like Red. - pinatacolada: - - rscadd: Adds NanoUI to the operating computer - - rscadd: Adds health announcing, critical and oxygen damage aural alerts to the - computer, with a menu to selectively turn them on and off -2016-02-10: - Crazylemon64: - - tweak: The cloner now checks for NO_SCAN on the brain when scanning - unclonable - species are now truly unclonable. You are still able to revive them with a brain - transplant and a defib, however. - - rscadd: A tier-4 DNA scanner linked to a cloning system will now be able to reproduce - a body from a brain's DNA, in event of the original corpse being gibbed or similar. - - bugfix: Species with organic limbs and NO_BLOOD will no longer bleed (though still - on hit - write that off as "bone powder") - - tweak: Skeletons now lack internal organs, except for the runic mind which exists - in their head - an analogue for the brain - - rscadd: Skeletons that drink milk will be regenerated at a moderate pace, have - a small chance of mending bones, and will praise the great name of mr skeltal - - tweak: Adds a reagent system for species reacting to specific reagents - - rscadd: Slime People can now select from all human hairstyles, and their "hair" - will be tinted a shade of their body. - - tweak: Increases the frequency of the cortical borer event. - - tweak: People with borers cannot commit suicide - this applies to a controlling - borer, too. - - tweak: Borers can no longer overdose their hosts. - - tweak: Borers can now inject Saline-Glucose, Spaceacillin, Hydrocodone, Mitocholide, - Salbutamol, Capulettium+, and Charcoal. Styptic was removed, as it's pathetic - at healing when directly injected. Salicyclic acid was removed too, as its functionality - is duplicated by both hydrocodone and saline-glucose. - - bugfix: A mind trapped by a cortical borer can now understand things it could - understand when normally in its body. - - rscadd: Changes chemistry's welding tank to a wall-mounted version, to increase - the room available. - - rscadd: You can now gib butterflies and lizards with a knife - - rscadd: Ghosts can now follow mecha - - bugfix: You can now access an R&D console by emagging it - it did nothing before. - - bugfix: Walls will now properly smooth and show damage. - - bugfix: Fixes the dialog that occurs when the AI shuts off to actually do what - it says it does - Fox McCloud: - - bugfix: Fixes not being able to attach IEDs to beartraps - - bugfix: Can no longer spamclick someone to death using headslamming on a toilet/urimal - - tweak: Toilet/urinal headslamming now plays a sound - - tweak: Toilet headslamming damage reduced slightly - - rscadd: Can now fill open reagent containers in a toilet to receive "toilet water". - - tweak: No more message spam when someone fills a container using a sink - - rscadd: Can now wash your face using a sink, which washes away lipstick and wakes - you up slightly - - tweak: Washing things will now use progress bars - - tweak: Ensures consuming a single syndicate donk pocket won't get you addicted - to meth - - tweak: Kinetic Accelerators and E-bows automatically reload - Glorken: - - rscadd: Added a Knight Arena for Holodeck. - - imageadd: Added red and blue claymore sprites. - - spellcheck: Changed overrided to overrode when emagging Holodeck computer. - KasparoVy: - - rscadd: Vox versions of the Officer SWAT sechailer + HOS SWAT sechailer + Warden - SWAT sechailer. - - rscadd: Resprited versions of most Human masks to fit Unathi, Tajara and Vulpkanin. - - rscadd: Warden now gets their own version of the SWAT sechailer in their locker. - - tweak: HOS now gets the appropriate version of the SWAT sechailer in their locker. - - tweak: Repositioned smokeables now available for Vox, Unathi, Tajara and Vulpkanin. - - tweak: Properly shades Vox bandana down-state sprites. - - rscadd: Readds Tajaran bald hairstyle. - - rscadd: Alternate style of non-Human breath mask (incl. surgical/sterile mask) - down-state positioning. - - tweak: Corrects all non-Human species' breath mask (incl. surgical/sterile mask) - down-state icons to use the right position style. - - tweak: Minor adjustments to Tajaran breath mask up-state sprites. - PPI: - - rscadd: Adds a reconnect button to the File menu in the client. - - rscadd: Adds head patting - Regen: - - tweak: Powersink can now drain a lot more power before going boom - - tweak: Buffed the powersinks drain rate - - tweak: Buffed explosion from an overloaded powersink, try to find it instead of - overloading the grid. - - rscadd: Admin log warning before the powersink explodes - Spacemanspark: - - rscadd: Miners can now utilize the power of mob capsules to take along their lazarus - injected mining creatures! - - rscadd: Store your Pokemo- er, sorry, I mean mining mobs that you've captured - in the lazarus capsule belt. - Tastyfish: - - bugfix: Species that don't breathe can kill themselves now! - - rscadd: Suicide messages are now catered to your species. - - tweak: Shortened the default pill & patch name when using the ChemMaster. - - rscadd: The chaplain now has a service radio headset, as Space Jesus intended. - TheDZD: - - tweak: When Ahelping, "Question" is now "Mentorhelp" and "Player Complaint" is - now "Adminhelp." - - tweak: Mentorhelps and PM replies from mentors appear in a bold aqua blue color. - - tweak: Adminhelps and PM replies from admins appear in a bold bright red color. - - tweak: PM replies from players appear in a dull/dark purple color. - - rscadd: Adds admin attack log to players being converted to cult. - - rscadd: Adds shadowling thrall jobbans. - - rscadd: Jobbanned players who are converted to shadowling thrall, revolutionary, - or cultist will have the control of their body offered up to eligible ghosts. -2016-02-13: - Crazylemon64: - - tweak: Relaxes the check on what atoms you can follow to any movable atom - - tweak: Mages are now more ragin - - tweak: Admins can now adjust the total number of wizards at runtime by tweaking - either max_mages, or players_per mage - DaveTheHeadcrab: - - rscadd: Adds new worn icons for duffelbags to better reflect their size, compliments - of WJohn at /tg/ - FalseIncarnate: - - rscadd: Adds burritos, made from cutlets, beans, rice, capsacin oil (hotsauce), - cheese, and flat dough (because we lack proper tortillas) in the microwave. - - rscadd: Adds chimichangas. You know you want a deep-fried burrito. - Fox McCloud: - - tweak: Updates some spell icons with better/higher quality icons - - tweak: Updates unarmed attacks to allow for more customization - - tweak: Updates martial arts so they factor in specie's attack messages and sounds - - tweak: Re-balances Sleeping Carp fighting style - - tweak: Re-balances Bo Staff - - tweak: 'Rebalances Golem: they should now be spaceproof, fire+cold proof, rad - proof, virus immune, clonable, parapen+syringe gun immune, deal increased melee - damage. Their armor has been reduced to 55 melee across the board, their slip - immunity removed, pain immunity removed, and they''re slightly slower' - - bugfix: Fixes Ei Nath generating two brains - - bugfix: Ensures the Necromatic Stone generates actual skeletons - - bugfix: Can now strip PDA/IDs from Golems - - bugfix: Fixes sleeping carp grab not being an instant aggressive grab - - bugfix: Fixes an exploit with declaring war on the station - KasparoVy: - - rscadd: Orange and purple bandanas for all station species. - - rscadd: The ability to colour bandanas with a crayon in a washing machine. - - tweak: Refactors the bandana adjustment system. - - tweak: Minor adjustments to Tajaran and Unathi bandana east/west sprites. - - tweak: Adjusting a bandana will now take if off of your head/face and put it in - an available hand. If both hands are available, it goes in the selected hand. - - bugfix: Adjusting a coloured bandana will no longer revert it to the original - coloured icons anymore. - - bugfix: Adjusting a bandana from mask-style to hat-style means the bandana won't - obscure your identity anymore. - - rscadd: Greys now use re-positioned smokeables. They no longer smoke out the eyes. - TheDZD: - - bugfix: Fixes spacepods being able to shoot through walls. - - tweak: Lowers spacepod weapons fire delay. - - tweak: Increases spacepod weapons energy costs. - - tweak: Makes spacepods move at speeds not rivaling those of photon beams. They - are now a hair bit faster than a person with a jetpack. - - tweak: Reduces battery costs for spacepod movement. -2016-02-24: - Crazylemon64: - - tweak: The defib should be more reliable on people who have ghosted - - tweak: The defib will now give a message if the ghost is still haunting about - - rscadd: Attacking someone with an accessory will now let you put things on them - without having to strip them. - - bugfix: Borers will now properly detach upon death of a mob they are controlling - - tweak: Borers can now see their chemical count while in control of a mob - - rscadd: Borers can now silently communicate with their host - this is not available - to the host until the borer has either begun to communicate, or has taken control - at least once - this is to avoid spoiling that the borer exists - - tweak: Borers won't be able to talk out loud inside of a host, by default - they - can remove this safeguard with a verb under their borer tab. Borer hivespeak - is unaffected. - - tweak: Borers infesting and hiding are now silent. - - tweak: Made borer's chem lists more nicely formatted - - bugfix: No more superspeed attacking simplemobs - - tweak: New players now show up properly under the "who" verb when used as an admin - - rscadd: Mining drones will now automatically collect sand lying around - - bugfix: RIPLEYs can now drill asteroid turfs for sand - - rscadd: You can now load exosuit fuel generators with items containing their material - - this means you can fuel yourself off of ores, but this will be highly inefficient - and cost you mining points later on, as you can't take fuel back out. - - rscadd: You can now load the fuel generators from an ore box. - - tweak: The plasma generator now produces 3x as much power from the same amount - of fuel - this lets it even remotely compete with the uranium generator. - - tweak: You can now light cigarettes off of burning mobs. - - tweak: Exosuit tracking beacons now fit in boxes - prior, they were far too large - for even a backpack, as they shared the same size as all other mecha equipment - - tweak: Miners can now collect ore by walking over it with an ore satchel on. - FalseIncarnate: - - rscadd: Adds prize tickets as a replacement for physical arcade prizes. - - rscadd: Adds a buildable prize counter to exchange tickets for prizes. - - rscadd: Adds a bike. Despite what Prof. Oak might claim, you can ride it indoors. - - rscadd: Adds colorful wallets, for that old school arcade pride. - - bugfix: Fixes accidental removal of plump helmet biscuit recipe. - - rscadd: Temporarily adds a prize counter to the bar (Cyberiad) or dorms (MetaStation), - and adds a max upgrade one to the Ninja Holding Area (Cyberiad z2) - - bugfix: Fixes Metastation. Seriously fixed a lot, just read the PR description - for the full list. - FlattestGuitar: - - rscadd: Adds IPC alcohol and a few derivative drinks - - tweak: IPCs can now drink and be fed from glasses - Fox McCloud: - - tweak: Laser eyes mutation no longer drains nutrition - - tweak: 'splits the EMP kit into two things: the standard EMP kit (2 grenades and - an implant), and the EMP flashlight by itself' - - tweak: nerfs heart attacks so they do less damage - - tweak: Pickpocket gloves now put the item you strip into your hands as opposed - to the floor - - tweak: Picketpocket gloves can now silently strip accessories - - tweak: Pickpocket gloves will no longer give a message for messing up a pickpocket - KasparoVy: - - bugfix: Adjusting masks while they are not on the face will no longer turn off - internals. - - bugfix: Adjusting masks while they are not on the face will now cause the mask - to hide/reveal the wearer's identity the next time it's worn as intended. - - rscadd: Adds the ability to open/close bomber jackets. - - rscadd: Adds a security bomber jacket. This jacket inherits the protection and - storage capabilities as a standard Security vest with additional bomber jacket - benefits. - - rscadd: Adds UI button in top left of screen for jacket adjustment. - - tweak: Replaces the standard bomber jacket in the Pod Pilot bay with the Security - version. - - tweak: Centralizes jacket/coat adjustment handling. - - tweak: All jackets start closed by default. - - rscadd: Geneticist duffelbag on-mob sprite (for all species). - - rscadd: Vox-fitted backpacks, satchels, ERT backpacks, duffelbags and defib unit. - - tweak: Refactors back-item icon generation. - - bugfix: Typo in the description of Santa's sack. - - bugfix: Missing punctuation and gender macros in the description of the bag of - holding. - - bugfix: The tweak to back-icon generation fixes a bug where the wrong sprite name - was being used to generate back-item icons. - PPI: - - rscadd: Adds the ability to hide papers in vents. You can now leave a romantic - love letter, exchange information in secret, or hide papers infused with the - power of nar'sie from sight. - Regen1: - - rscadd: Adds the Immolator laser gun, a modified laser gun with 8 shots that will - ignite mobs, can be made in R&D - Spacemanspark: - - rscadd: Adds *yes and *no emotes to Synthetics. Glory to Synthetica. - Tastyfish: - - tweak: The PDA system has been completely redone behind the scenes! It should - be functionally similar, although there is now a Home and Back button at the - bottom as appropriate. - - rscadd: All of the heads now have multicolored pens. - - rscadd: EngiVend now has 10 camera assemblies. - - tweak: Borgs can now use vending machines. - - rscadd: There are now picture frames that can be made from the autolathe or wood - planks for papers, photos, posters, and canvases! - pinatacolada: - - tweak: Makes the Protect Station AI law board no longer consider people that damage - the station crew, instead of human - ppi: - - tweak: When revealed Revenants will not be able to move at the maximum move speed, - nor be able to pass through any solid object, like walls, windows, grills, computers - and mechs. -2016-02-26: - FalseIncarnate: - - tweak: Chocolate can now make you fat, as expected. - Fox McCloud: - - tweak: stamina damage now regenerates slightly faster - - rscadd: Adds in whetstones for sharpening objects - - tweak: Kitchen vendor starts off with 5 salt+pepper shakers - - tweak: Can now point while lying or buckled - - bugfix: Fixes Capulettium Plus not silencing - - bugfix: Fixes slurring, stuttering, drugginess, and silences last half of what - they should - KasparoVy: - - bugfix: Jackets that start open are recognized as actually being open already - now. This fixes a bug with certain items that don't have an open state, or cases - where it ended up giving an item the wrong icon (one that didn't exist) - Spacemanspark: - - bugfix: Fixes synthetics from giving off the proper message in the chat box when - using the *yes and *no emotes. - Tastyfish: - - rscadd: Wheelchairs, janicarts, and ambulances can now go through doors according - to the user's driver's access. -2016-03-07: - Crazylemon64: - - rscadd: People with VAREDIT can now write matrix variables - - rscadd: People with VAREDIT can now modify path variables - - tweak: Refactors the variable editor code somewhat. - - rscadd: The buildmode area tool now shows reticules of what you've selected. - - bugfix: Switching mobs while using the buildmode tool no longer screws up your - UI. - - tweak: Refactors buildmode so it's no longer a special-case system. - - rscadd: Adds a copy mode to build mode, which lets you duplicate objects. - - tweak: Any mob in buildmode can work at the fastest possible rate. - - bugfix: Fixed a problem where the icons of a person would not correctly update - when changing gender. - - tweak: One's hairstyle only adjusts on gender change if it's incompatible with - your new gender. - - bugfix: Fixed a bug where a person's icon would only be updated if their sprite - had a new layer added or removed. - - bugfix: You no longer lose your name when monkeyized and reverted - you'll still - look like a monkey while you're a monkey, though. - - bugfix: Your organs will now match your gender when you are cloned. - - bugfix: Skeletons (when a body rots) no longer retain a fleshy torso. - - bugfix: Putting people in an active cryotube now produces the message on insertion, - rather than release. - - bugfix: An EMP'd cloning pod will now display its sprites correctly. - FalseIncarnate: - - tweak: Water Balloons can be filled from more sources than just beakers and watertanks. - Fox McCloud: - - bugfix: Fixes the "yeah" glasses so the sound doesn't vary and a message is displayed, - on use - - bugfix: Noir mode only activates when the glasses are equipped to your actual - eyes - - rscadd: Noir Glasses mode can be toggled on or off (defaults to off) - - bugfix: Mimes can no longer use spells and continue speaking - - tweak: Mime abilities are now spells with proper icons - - tweak: Mime wall now last 30 seconds, up from 5 - - tweak: forecfields/invisible walls now block air currents - - rscadd: Adds the Sleeping Carp scroll to the uplink for 17 TC - - bugfix: Fixes Shadowlings being able to use guns - - bugfix: Fixes sleeping carp scroll users being able to use guns - - bugfix: Fixes the Experimentor throwing one item at a time - - tweak: Experimentor menu now automatically refreshes after use - - tweak: Lowers surgery times across the board - - tweak: Removes scalpels causing 1 damage on successful surgery - - tweak: Removes random chance to fracture ribs on a successful surgery - - tweak: Mining drills now have an edge - KasparoVy: - - tweak: Jackets who have the verb available but are not intended to be adjusted - will not have the action button available. - - bugfix: You can now adjust breath masks while buckled into beds and chairs. - - bugfix: Known issues with adjusted jackets using the wrong sprites. - - rscadd: Blueshield coat in hand and item icons. - - rscadd: Hulks now rip apart adjustable and droppable jackets. The items stored - in the jackets get dropped on the ground. - Tastyfish: - - tweak: Infrared emitters can now be rotated while already in an assembly via the - UI popup. - - tweak: The infrared emitter can no longer be hidden inside of boxes and still - work. - - rscadd: The beach now has a border and is splashier. - - rscadd: Gives Psychiatrist a paper bin, clipboard, and multicolored pen. - - rscadd: Gives the Librarian / Jouralist a multicolored pen. - - rscadd: Gives the NT Representative a clipboard. - - tweak: The ethanol-based neurotoxin drink is now called Neuro-toxin to avoid being - confused with the deadly toxin. - VampyrBytes: - - bugfix: Fixes emotes ending with s needing 2. Emotes now work with grammatical - options eg ping or pings, squish or squishes - - tweak: Updated emote help with missing emotes. Help will also show any species - specific emotes for your current species -2016-03-08: - Crazylemon64: - - tweak: Slime people are now more vulnerable to low temperatures. - - rscadd: Slime people are able to slowly regrow limbs at a high nutrition cost. - - rscadd: Slime people now slowly shift color based on reagents inside of them - - disabled by default, toggle it with an IC verb - - tweak: Slime people's cores are more vulnerable to damage - - bugfix: Species-related abilities now properly are removed - no more vox hair - stylists, unfortunately. - Fethas: - - bugfix: the nest buckle now looks for the right organ path - - bugfix: Fixed some sprites. - - bugfix: No more putting no drops in rechargers, - Fox McCloud: - - soundadd: Implement's goon's gibbing sound - - soundadd: Implement's goon's gibbing sound for robots/silicons - - sounddel: Removes old gibbing sound - Spacemanspark: - - rscadd: Lazarus Injector's can now be emagged to activate their special features, - alongside using EMPs on them. - Tastyfish: - - rscadd: Mimes now have a new ore, Tranquillite, used to bring peace and quiet - to the station. - - rscadd: There are also permanent invisible walls and silent floors that can be - made from tranquillite. - - rscadd: The Recitence mech is now buildable! - - tweak: The Recitence mech is now playable! - - tweak: Mid-round selection for various creatures and antagonists now consistently - asks permission. - TheDZD: - - rscadd: Adds justice helmets with flashing lights and annoying sirens. - - rscadd: Adds crates containing said helmets. - - rscadd: Also includes a version of the helmet that can only be spawned by admins, - and just has a single red light in the center instead of the stereotypical police - blinkers. - monster860: - - bugfix: Space pod transitions are now fixed. -2016-03-16: - Crazylemon64: - - tweak: Being in godmode now makes you immune to bombs - - rscadd: Science members now get compensated when they ship tech disks to centcomm. - - rscdel: Science crew are no longer paid when they "max" research. - - bugfix: Roboticists now get credit for making RIPLEYs and Firefighters - - tweak: Slime people can now regrow limbs on a more lax nutrition requirement - - tweak: Enhances the nutripump+ to let slime people regrow limbs with it active - - bugfix: Skeletons, slime people, IPCs, and Diona no longer leave blood when hit - - bugfix: Rejuvenating a slime person will no longer clog up their "blood" - - tweak: Slime people will now regenerate "blood" from having water in their system - - tweak: The decloner can now be created again - - rscadd: Environment smashing mobs can now destroy girders. - DaveTheHeadcrab: - - tweak: Removes the check for species on the update_markings proc. - FalseIncarnate: - - tweak: Xeno-botany is now more user-friendly, and less random letters/numbers. - - rscadd: Hydroponics now has a connector hooked up to the isolation tray and a - new connector in their back room for those strange plants that like spewing - plasma or eating nitrogen. - - rscadd: You can now (finally) build the xeno-botany machines, and science can - print off their respective boards. - Fethas: - - tweak: Syringes are no longer sharp - - bugfix: byond likes direct pathing so item/organ/internal not item/organ even - if it shouldn't be in the internal_organs list. This was preventing the list - from doing stuff correctly. - - tweak: fixed ipc organ manipulation surgery, you can now insert a replacment ipc - organ directly instead of needing a screwdriver in your main hand - - bugfix: nanopaste now will repair organs with robotic >= 2 instead of > 2 cuase - i am an idiot - - bugfix: Fix, hopefully, for a runtime for clientless mobs whos head are cut off... - - bugfix: Hopefully fixes issues with diona eyes - - bugfix: Though shalt not eat robotic organs..including cybernetic implants.. - - bugfix: ITS SURGERY_STEP/DETHRALL NOT SURGERY_STEP/INTERNAL/DETHRALL - FlattestGuitar: - - rscadd: Adds three new synthanol drinks - - tweak: Drinking synthanol is now a bad idea if you're organic - - tweak: A glass of holy water now looks like normal water - Fox McCloud: - - soundadd: Adds in drink fizzing sound - - tweak: Drink/bartender recipes use this new fizzing sound in addition to a few - other recipes - - soundadd: Adds in a fuse burning sound - - tweak: Bath salts, black powder, saltpetre, and charcoal use this sound now - - soundadd: Adds in a matchstrike+burning sound - - tweak: Lighting a match triggers this new sound - - soundadd: Adds in scissors cutting sound - - tweak: Cutting someone's hair uses this new sound - - soundadd: Adds in printer sounds - - tweak: printing off papers from various devices typically uses these sounds - - soundadd: Adds computer ambience sounds - - tweak: black box recorder and R&D core servers both play this sound at random - rare intervals - - tweak: Reduces the tech level (and requirement) for nanopaste - - tweak: Reduces the tech level (and requirement) for the plasma pistol - - tweak: Removes Nymph and drone tech levels - - tweak: Reduces tech levels on the flora board - - tweak: Adds tech level requirements to mech sleepers, mech syringe guns, mech - tasers, and mech machine guns - - tweak: Increases tech cost of the decloner - - tweak: Removes the pacman generators - - tweak: Removes emitter - - tweak: Removes flora machine (functionless anyway) - - tweak: Removes the pre-spawned nanopaste - - tweak: Removes space suits - - tweak: Removes excavation gear - - tweak: Replaces the soil with actual hydroponic trays (more aesthetic than anything) - - tweak: Removes most external asteroid access from the station - - tweak: Excavation storage is now generic science storage - - tweak: removed the plasma sheet - - bugfix: Fixes augments not showing up in R&D unless specifically searched for - - bugfix: Fixes some augments being unavailable in mech fabs - - bugfix: Fixes augments having no construction time - - bugfix: Fixes xenos not gaining plasma when breathing in plasma - - bugfix: Fixes plasma reagent not generating plasma for a person - - rscadd: Screaming has different sounds based on being male or female - - soundadd: Implements Goon's screaming sounds. - - rscadd: Screaming tone is now based on age of character instead of being random - - tweak: Ups the cooldown on screaming from 2 seconds to 5 seconds - - tweak: Removes chance for Whilhelm scream - - rscadd: Borgs can now scream - - rscadd: Monkey's now have a unique screaming sound - - rscadd: IPCs now scream like cyborgs - - rscadd: Updates slot machines to have higher jackpots and more payouts with more - interesting sounds - - rscadd: 'Adds X-Ray, Thermal, Anti-tun, and Reviver implants to the nuke ops uplink - (augments come with one auto-implanter) rcsadd: Adds in augment auto-implanter, - which inserts and implant without surgery' - - tweak: tweaks a large number of chems; behaviors are largely retained, but new - flavor messages, probabilities, etc may be present; overall, you can expect - chems to do the same thing - - tweak: 'Tabun re-replaced with Sarin rcsadd: New reagent: cholesterol: if overdosed - on, it can cause a heart attack--fatty foods, cheese, eggs, and some meats all - produce cholesterol in your body.' - - rscadd: Mixing Sarin, Meth, or Cyanide will poison in a very small area of the - reaction if you're not on internal OR not wearing a gas mask - - rscadd: Chemist warddrobe now has two gas masks - - tweak: Teslium will now impact synthetics AND organics - - bugfix: Fixes facehuggers hugging already infected people - - bugfix: Fixes facehuggers hugging people while dead - - bugfix: Fixes Embryo's developing twice as fast as they should - - bugfix: Fixes up some behaviors with xeno eggs - - tweak: Xeno acid can now melt through floors and the asteroid - - rscadd: Xeno's now play the gib sound when actually gibbed - - rscadd: Implements Changeling headcrabs/headspiders - - bugfix: Fixes xenos not throwing their organs when gibbed - - bugfix: Fixes swallowed mobs not being ejected when a human is gibbed - - rscadd: Adds in spider eggs reagent, an infectious reagent that requires surgery - to correct - - bugfix: Fixes EMPs causing eye implant users to be permanently blind - - tweak: Increases bag of holding's storage capacity - - rscadd: Removing a heart no longer kills the patient instantly, but induces a - heart attack - - bugfix: Demon hearts will not work - - bugfix: Should now actually be able to re-insert hearts - - rscadd: Reworks addictions to bettter differentiate them betweeen overdosing and - make them more realistic. - - tweak: 'changes which chems are addictive, currently, the follow reagents are - now addidctive: meth, crank, krokodil, bath salts, space drugs, perfluoradecalin, - omnizine, coffee, nicotine, fliptonium, ultra lube, surge, fake cheese, weird - cheese, ephedrine, diphenhydramine, teporone, and morphine' - - rscadd: sleepers help you recover from addiction faster - - rscadd: Can now make cable coils in autolathes - - bugfix: Fixes the slot machine announcements not displaying properly - Tastyfish: - - tweak: The super fart mutation now gives you a spell-like ability instead of augmenting - the emote. - - tweak: Vampire abilities are now in their own Vampire tab, as well being action - buttons at the top, like spells. - - bugfix: Cloning a vampire no longer makes them lose their abilities. - - bugfix: Vampires can no longer hypnotize chaplains. - - bugfix: Being a full vampire (500+ total blood) actually makes you immune to holy - water reliably now. - - rscadd: 'Some old away missions are back: Academy, Black Market Packers, Space - Hotel, Station Collision, and Wild West. Go out and round up some hostiles!' - - bugfix: Shuttle consoles now pair up to the engineering, mining, research, or - labor shuttle when built or used before pairing, as long as the shuttle is near - the console, or the shuttle is moved to be nearby. - monster860: - - rscadd: Mining station now has a podbay. - - rscadd: Ore scooping module for the spacepod. - - rscadd: 'Three mining lasers for spacepod: Basic, normal, and burst.' - - bugfix: Shooting weapons south or west of spacepod will actually hit adjacent - targets now, and won't shoot through walls anymore. - taukausanake: - - rscadd: Mice can now be picked up like diona -2016-03-22: - Crazylemon64: - - bugfix: Repairs all sorts of eldritch occurences that happen when you put an organic - head on an IPC body, as well as some decapitation bugs - - bugfix: Makes heads keep hair on removal - - bugfix: Amputated limbs from a DNA-injected individual now will keep their appearance - of the DNA-injected person - - bugfix: Wounds will vanish on their own now - - rscadd: Admins now have an "incarnate" option on the player panel when viewing - ghosts for quick player instantiation - - bugfix: Fixes a runtime regarding failing a limb reconnection surgery - - bugfix: Copying a client's preferences now overrides the previous mob's DNA - - bugfix: A DNA injector is now more thorough, and affects the DNA of mobs' limbs - and organs - - bugfix: DNA-lacking species can no longer be DNA-injected - - bugfix: Brains are now labeled again - - rscadd: Splashing mitocholide on dead organs will make them live again. - - rscadd: The body scanner now detects necrotic limbs and organs. - - bugfix: pAIs and Drones are now affected by EMPs and explosions while held. - Fethas: - - rscadd: Adds a surgery for infection treatmne/autopsys that is simply cut open, - retract, cauterize - - bugfix: fixes a dumb error in internal bleeeding surgerys - - rscadd: Chaos types no longer random teleport, but will make the target hallucinate - everyone looks like the guardian. - FlattestGuitar: - - rscadd: Adds a snow, navy and desert military jacket. - Fox McCloud: - - tweak: Removes random 1% chance to heal fire damage - - tweak: Removes passive healing from resist heat mutation - - tweak: Regen mutation heals every cycle (albeit less, on average), but doesn't - cost hunger - - bugfix: Fixes not being able to speak over xeno common or hivemind when you receive - the Xeno hive node - - rscadd: Adds in the ability to transfer non-locked metal+glass only designs from - the protolathe to autolathe - - tweak: Changes Outpost Mass Driver to prevent accidental spacings - - tweak: Shadow people no longer dust on death, are rad immune+virus immune, and - can be cloned. Slip immunity removed - - tweak: Shadowlings no longer get hungry or fat and no longer dust on death - KasparoVy: - - rscadd: The ability to change your head, torso and groin as an IPC in the character - creator. Non-IPCs cannot access the parts. - - rscadd: Head, torso and groin sprites for all mechanical limb/bodypart brands - but Morpheus and the unbranded ones (since those already exist) from Polaris. - - rscadd: Faux-eye optics for non-Morpheus heads. - - rscadd: The ability to change optic (eye) colour if you've got a non-Morpheus - head. - - rscadd: The ability to choose human hair styles (wigs) and facial hair styles - (postiche) with non-Morpheus heads. Non-Morpheus heads cannot choose screens. - Conversely, Morpheus heads cannot choose wigs or facial hair. - - rscadd: Two hair styles from Polaris. - - rscadd: The ability for IPCs to wear undergarments (shirts and trousers). - - rscadd: Antennae (colourable) for IPCs. - - tweak: IPC monitor adjustment verb will now adjust optic colour if the head is - non-Morpheus. - - bugfix: Combat/SWAT boots can now be toecut and jacksandals can't. - - bugfix: ASAP fix to what would've broken the ability to configure prostheses in - character creation. - - bugfix: Adjusted masks no longer block CPR (including bandanas). - - bugfix: You can no longer run internals from adjusted breath masks (or airtight - adjustable masks in general). - Regens: - - tweak: Robotic hearts will now properly give the mob a heart attack instead of - just damaging it when EMP'd - - rscadd: Assisted organs will now also take damage from EMP's - - bugfix: Internal robotic and assisted organs will now actually take damage from - EMP's - Tastyfish: - - rscadd: Adds PDA chatrooms. Post memes! Talk to your fellow collaborators! Get - caught! - - tweak: You can now set the PDA messenger to automatically scroll down to new messages. - - rscadd: Pet collars now act as death alarms and can have ID's attached to them. - - tweak: All domestic animals can now wear collars. - - rscadd: You can now make video cameras at the autolathe. - TheDZD: - - bugfix: Fixes an instance of old code being so incredibly, unbelievably, makes-me-want-to-stab-myself-in-the-eye-edly - idiotic. - TravellingMerchant: - - imageadd: Kidan have new sprites! - tigercat2000: - - rscadd: Nukeops now have an assault pod, they can use it for 30 TC. Loud and mean. - - bugfix: Lighting overlays can no longer go below 0 lum_r/g/b - - bugfix: Shuttles will work with lighting better. - - bugfix: Wizards can no longer teleport to prohibited areas such as Central Command. -2016-03-25: - Crazylemon64: - - bugfix: You now will actually have the correct `real_name` on your DNA. - - bugfix: No more roundstart runtimes regarding IPC hair. - - bugfix: Mitocholide rejuv will work more usefully now. - - bugfix: Limbs and cyborg modules will no longer appear in your screen. - - bugfix: Cyborg module icons are now persistent throughout logging in and out. - - bugfix: Various cyborg modules, like engineering, now use the proper icon. - FlattestGuitar: - - rscadd: Adds confetti grenades. - Fox McCloud: - - bugfix: Fixes Sleeping Carp combos not having an attack animation - - bugfix: Fixes several chems not properly healing brute/burn damage, consistently, - as intended - KasparoVy: - - bugfix: Unbranded heads and groins no longer invisible. - - bugfix: Zeng-hu left leg will now be in line with the body when facing south. -2016-03-26: - Fox McCloud: - - rscadd: Adds in dental implant surgery. Implant pills into people's teeth. - - tweak: Major rebalance and Shadowling update (https://github.com/ParadiseSS13/Paradise/pull/3986 - for details). In general, Shadowlings can no longer enthrall or engage in Shadowling - like behavior, pre-hatch. Post-hatch, shadowlings are much more powerful, with - a ride array of New abilities such as extending the shuttle or making thralls - into lesser shadowlings. Shadowling gameplay should not revolve almost entirely - around darkness, as opposed to pre-hatch shenanigans. - - rscadd: Robotics now has a "sterile" surgical area for performing augmentations - - rscadd: Adds the FixOVein and Bone Gel to the autolathe - - tweak: ensures all surgical tools have origin tech on them; lowers origin tech - on FixoVein - KasparoVy: - - rscadd: Slime People can now wear underwear. - - rscadd: Slime People can now wear undershirts. - TheDZD: - - tweak: NT has removed trace amounts of a highly-addictive substance from the "100% - real" cheese used in cheese-flavored snacks. As a result, incidence rates of - crewmembers becoming addicted to Cheesie Honkers should reduce to zero. - - tweak: After receiving complaints about crewmembers often being unable to physically - function without a back-mounted barrel of coffee, NT has replaced station all - sources of coffee on the station, including coffee beans themselves with a largely - decaffeinated version. It was funny the first time almost every crewmember aboard - the NSS Cyberiad was lugging around their own oil barrel filled with coffee, - it wasn't so funny, nor good for productivity the eighteenth. -2016-04-02: - Crazylemon64: - - rscadd: Metal foam walls will now produce flooring on space tiles - - bugfix: Syringes will now draw water from slime people. - FalseIncarnate: - - tweak: Let's you know when your container is full when filling from sinks. - - tweak: Prevents splashing containers onto beakers and buckets that have a lid - on them. - - rscadd: Pill bottles can now be labeled with a simple pen. - - tweak: Beakers/buckets (and pill bottles) now accept 26 character labels from - pens. - Fethas: - - tweak: Various spells have had a tweak to stun/reveal/cast, some other number - stuff... - - rscadd: Nightvision - - tweak: harvest code is now in the abilites file. - - rscadd: New fluff objectives - - bugfix: Hell has recently remapped its blood transit system and you can now once - again crawl through blood. We are sorry for the-GIVE US YOUR SOUL! - FlattestGuitar: - - tweak: Alcoholic beverages now have proper levels of ethanol in them. Good luck - passing out after a beer. - Fox McCloud: - - rscadd: Adds in the Lusty Xenomorph Maid Mob; currently admin only. - - bugfix: Fixes xenomorph brains having the wrong sprite, no origin tech, and incorrect - name - - tweak: removes xenomorph egg from hotel - - tweak: upgrades are no longer needed to for the available toys in the prize vendor - - rscadd: Implements Advanced Camera Consoles. A type of camera console that function - like AI's vision style. Non-buildable/accessible. - - rscadd: Adds in Xenobiology Advance Cameras. A type of camera console that functions - like advanced cameras, but only works in Xenobiology areas; can move around - slimes and feed them with the console as well. Also non-buildable/accessible - (for now). - - rscadd: Adds in cerulean slime reaction that generates a single use blueprint. - On use it colors turfs a lavender color - - rscadd: Adds disease1 outbreak event - - rscadd: Adds appendecitis event - - rscadd: Roburgers now properly have nanomachines in them - - rscadd: Re-adds nanomachines - - tweak: Experimentor properly generates nanomachines instead of itching powder - - bugfix: Fixes big roburgers having a healing reagent in them - - rscadd: Adds nanomachines to poison traitor bottles - - rscadd: Tajarans can now eat mice, chicks, parrots, and tribbles - - rscadd: Vulpkanin and Unathi can now eat mice, chicks, lizards, chickens, crabs, - parrtos, and tribbles - - bugfix: fixes spawned changeling headcrab behavior - KasparoVy: - - bugfix: Incisions made at the beginning of embedded object removal surgery can - now be closed in the same procedure. - ProperPants: - - rscadd: Maint drones have magboots. - - rscdel: Removed plastic from maint drones. Literally useless for station maintenance. - - tweak: Increased starting amounts of some materials for maint drones and engi - borgs. - - experiment: Reduced the number of lines taken by Engineering cyborgs calling on - materials stacks. - - rscadd: Operating tables can be deconstructed with a wrench. - - spellcheck: Fixed and shortened description of metal sheets. - Tastyfish: - - rscadd: Bots can now be controlled by players, by opening them up and inserting - a pAI. *beep - - bugfix: MULEbots can now access the engineering destination. - - bugfix: All MULEbot destinations should now have the correct load/unload direction, - meaning the crates won't be dumped inside the flaps. - - rscadd: Diagnostic HUD's now give health and status information about bots. - - bugfix: MULEbot rampage blood tracks are now rendered correctly and handle UE - traces as appropriate. - - experiment: Bots should (hopefully) lag the game less now. - - tweak: Beepsky contains 30% more potato. - - tweak: Action progress bars are now smooth. - - tweak: Clicking a filled inventory slot's square with an open hand now clicks - the item in the slot. - - rscadd: Status displays now display the time when in Shuttle ETA mode and no shuttle - activity is happening. - - tweak: Shuttle ETA countdowns on status displays are now amber. - - rscadd: pAI's can now use the PDA chatrooms. - - rscadd: Adds treadmills to brig cells, to give the prisoners something productive - to do. - TheDZD: - - rscdel: A lot of the guns and armor in the station collision, space hotel, academy, - and wild west away missions have been removed/replaced. - - rscdel: Removes that fucking facehugger from station collision. - tigercat2000: - - rscdel: Virus2 has been removed. - - rscadd: Virus1 is back. Viva la revolution. - - rscadd: You can now have up to 20 characters. -2016-04-07: - Crazylemon64: - - bugfix: Removes an offset from the advanced virus stealth calculation, causing - viruses to be more stealthy than the sum of their symptoms. - - bugfix: Mulebots will now send announcements to relevant requests consoles on - delivery again. - FalseIncarnate: - - rscadd: Adds logic gates, for doing illogical things in a logical manner. - - rscadd: Adds buildable light switches, for all your light toggling needs. - - bugfix: Fixes a resource duplication bug with mass driver buttons. - Fethas: - - tweak: maybe makes them last longer...maybe..and fixes the event end message - Fox McCloud: - - rscadd: Maps in the slime management console to Xenobio - - tweak: Reduces Xenobio monkey box count from 4 to 2 - - bugfix: Fixes weakeyes having a negligible impact - - rscadd: Can spawn friendly animals with a new gold core reaction by injection - with water - - tweak: Hostile animal spawn increased from 3 to 5 for hostile gold cores - - tweak: Swarmers, revenants, and morphs no longer gold core spawnable - - bugfix: Fixes invisible animal spawns from gold core/life reactions - - rscadd: Adds tape to the ArtVend - - tweak: Can no longer use sentience potions on bots - - rscadd: Added in Plasma Dust reagent, acquired by grinding plasma sheets; it's - more toxic than regular plasma and generates plasma gas when spilled onto turfs. - - tweak: Slimecore reactions now require plasma dust as opposed to dispenser plasma - - rscadd: Added in new Rainbow slime; inject with plasma dust to get a random colored - slime. Acquire by having 100 mutation chance on a slime when it splits. - - rscadd: Monkey Recycler can produce different types of monkey cubes; change the - cube type by using a multitool on the recycler - - tweak: Epinephrine/plasma reagents changing mutation rate has been removed - - tweak: Mutation chance is inherited from slime generation to slime generation - as opposed to being purely random. - - tweak: 'New reactions added for red and blue extracts: red generates mutator, - which increases mutation chance, and blue generates stabilizer, which decreases - mutation chance.' - - tweak: Slime glycerol reaction removed - - tweak: Slime cells are now high capacity cells (more power than before) - - tweak: extract enhancer increases the slime core usage by 1 as oppose to setting - it to three - - tweak: slime enhancer increases slime cores by 1 as opposed to setting the core - amount to 3 - - tweak: Chill reaction lowers body temperature slightly more so it doesn't just - wear off instantly - - tweak: Reduces Xenobio plasma sheets from 8 to 3 and removes that pesky boombox - - bugfix: Processors no longer produce 1 more slime core than intended - - bugfix: Less blank/spriteless/empty foods from the silver core reaction - - tweak: Virology mix reactions now use plasma dust as opposed to plasma - - tweak: Statues can no longer move/attack people unless they're in total darkness - or all mobs viewing them are blinded - - tweak: statues are invincible to anything other than full out gibbing. - - tweak: Statues flicker lights spell range increased - - tweak: Blind spell no longer impacts silicons - - bugfix: Fixes statues being able to attack/move whenever they feel like it, regardless - of client statues - - bugfix: Fixes blind spell impacting the statue - Tastyfish: - - tweak: Beepsky is no longer a pokemon. - - tweak: pAI-controlled Bots now reliably speak human-understandable languages over - the radio. - - rscadd: More floor blood for the blood gods. (Or rather, as much as there was - supposed to be.) - tigercat2000: - - rscadd: Items in your off hand will now count towards access. -2016-04-12: - FalseIncarnate: - - tweak: Adjusting the setting of a vendor circuit board is no longer random, but - instead provides a select-able list. - - tweak: Vendor Circuit Board design moved from the Circuit Imprinter to the Autolathe, - acid requirement replaced by metal. - - bugfix: Burnt matches can no longer light cigarettes, pipes, or joints. - Fethas: - - rscdel: Nukes the cargo train code rscadd:Adds simple vehicle framework and converts - secway/janicart/snowmobiles/bikes/cars/ambulance to it rscadd:Adds space speedbike, - red and blue versions, yes you WILL need a spacesuit rscadd:Maps janicart and - secway onto metastation (but not ambulance no pareamedic garage, no i am not - mapping that) - - bugfix: You should now be able to operate on IPC eyes, SHOULD bugfix:hopefully - surgery on diona works right - Fox McCloud: - - rscadd: Adds in TraitorVamp; game mode that's essentially like TraitorChan, but - with a Vampire instead of a Changeling - - tweak: Vampires cannot use holoparasites - - tweak: Malf AI will automatically lose if it exits the station z-level - Tastyfish: - - tweak: All cats can kill mice now. - - tweak: E-N can't suffocate. - - tweak: Startup time is now shorter. - - rscdel: Removed the Station Collision away mission from rotation, due to multiple - conceptual and technical issues. -2016-04-14: - Aurorablade: - - rscdel: Removes the !!FUN!! of having headslugs gold core spawnable. - Fox McCloud: - - soundadd: Added in sounds (instead of a chat-based message) for when airlocks - are bolted/unbolted - - soundadd: Added in sound for when airlocks deny access - - tweak: cutting/pulsing wires will play a sound - - tweak: ups nuke ops game mode population requirement from 20 to 30 - - rscadd: Adds in mining drone upgrade modules to increase their health, combat - capability, or reduce their ranged cooldowns - - rscadd: Adds in mining drone "AI upgrade" a sentience potion that only works on - mining bots - - tweak: Mining bots should be less likely to shoot you when attacking hostile mobs - - tweak: Killer tomatoes actually live up to their name now and are hostile mobs - - tweak: Killer tomatoes are an actual fruit now; activate it in your hands to make - them into a mob - - tweak: Killer tomatoes are directly mutated from regular tomatoes instead of blood - tomatoes - - tweak: Increased the yield of regular tomatoes by 1 - - tweak: Tweak some stats on the killer tomato seeds - - bugfix: Fixes the blind player preference not doing anything - - rscadd: Adds portaseeder to R&D - - tweak: Scythes will conduct electricity now - - tweak: Mini hoes play a slice sound instead of bludgeon sound - - tweak: Plant analyzer properly has a description and origin tech - - tweak: Can have hulk+dwarf mutations together - - tweak: Can have heat+cold resist together - - tweak: Can only remotely view people who also have remote view - - bugfix: Fixes cold mutation not having an overlay - - bugfix: Hallucinations will no longer tick down twice as fast as they should nor - will they spawn twice as many hallucinations as they should - - bugfix: Incendiary mitochondria no longer asks who you want to cast it on (it - always is meant to be cast on yourself) - - bugfix: Fixes permanent nearsightedness even when wearing prescription glasses - KasparoVy: - - tweak: 'Head accessories now behave like facial hair: They will no longer be hidden - by clothing items that BLOCKHEADHAIR (have the BLOCKHEADHAIR flag).' - - bugfix: Wearing a piece of clothing that blocks head hair will no longer make - head accessories (facial markings/horns/antennae) invisible until an icon update - is triggered while the headwear is off. - Meisaka: - - bugfix: law manager no longer freaks out with Malf law - Tastyfish: - - tweak: The /vg/ library computer interface has been ported, giving a much better - use experience. - - rscadd: Books can now be flagged for inappropriate content. - TheDZD: - - rscdel: Removes shitty Caelcode bees. - - rscadd: Hydroponics can now manage bee colonies, bees produce honeycombs that - can be ground to obtain honey, a decent nutriment+healing chemical - - rscadd: Hydroponics can inject a queen bee with a syringe of a reagent to alter - her DNA to match that reagent, meaning all honeycombs produced will contain - that reagent in small amounts - - rscadd: Bees with reagents will attack with that reagent. It takes 5u of a reagent - to give a bee that reagent. - - rscadd: Added the ability to make Apiaries and Honey frames with wood - - rscadd: Added the ability to make Royal Bee Jelly from 10 Mutagen and 40 Honey - - rscadd: Added the ability to make more Queen Bees from Royal Bee Jelly by using - it on an existing Queen, to split her into two Queens - - rscdel: Removes some snowflakey mob behavior from bears, snakes and panthers. - - rscadd: Hudson is feeling punny. - - experiment: Hostile mob AI should now be a bit more cost-efficient. - monster860: - - rscadd: Adds area editing, link mode, and fill mode to the buildmode tool +DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. +--- +2016-01-03: + TheDZD: + - rscadd: Ports over changelog system from /tg/station. +2016-01-06: + Certhic: + - bugfix: Corrected some air alarms so that atmos computer can access them + - bugfix: Bodyscanner now sees mechanical parts in internal organs + Crazylemon64: + - bugfix: Sleeping simple animals should tick down sleeping as normal - deaf simple + mobs are no longer a thing + Tastyfish: + - tweak: Instruments now use NanoUI. + - spellcheck: Corrected the blueshield mission briefing. +2016-01-08: + Crazylemon: + - rscadd: Fully enables a system to allow species to have unique procs and verbs + that come and go with the species. + - rscdel: IPCs lose their change monitor verb when changing species now. Gone are + the days of recalling a past IPC life to perform self-barbery! Oh, woe is me! + - bugfix: Sleepers and Body Scanners will now reliably work when rotated + - bugfix: SSD humans should be asleep more reliably now. + Dave The Headcrab: + - tweak: Nerfs the damage the Detective's revolver does from 15 brute to 5 brute. + - rscadd: Adds a 300 round capacity buckshot magizine that fits into the L6 Saw. + - rscadd: Adds a 25 round capacity 40mm HE magizine that fits into the L6 Saw. + - rscadd: Adds the 'Devastator' L6 SAW, starts off loaded with the buckshot magizine. + - rscadd: Gives the SST the 'Devastator' L6 Saw, and one of each mag type in their + bag. + FalseIncarnate: + - rscadd: Plants will now begin to die over time if their age exceeds 5 times their + TRAIT_MATURATION value. + - tweak: 'Weed growth chance per process in trays has been slightly increased (Previously: + 5% chance if no seed, 1% otherwise;Now: 6% / 3%).' + - tweak: 'Pest growth in trays has been slightly buffed. (Previously: 3% chance + to increase by 0.1; Now: 5% chance to increase by 0.5)' + Fethas: + - rscadd: Due to Archmage Steve leaving the nya-cromantic stone near the microwave, + the true power of the stone has been unleashed. Subjects of the stone are not + only ressurected ... but resurrected as catgirls ... We fired steve. + Fox McCloud: + - bugfix: fixes a bug relating to some brute/burn damage being dealt to human mobs. + - rscadd: Adds in overloading APCs, causing them to arc electricity to mobs in range. + - tweak: Makes Engineering related APCs overload proof. + - rscadd: Implements the timestop spell. + - rscadd: Implements new sepia slime reaction which halts time in an AoE. + - tweak: sentience potions no longer can make slimes sentient. + - tweak: Removes Hulk instant stun. + - tweak: Hulk damage increased. + - tweak: Hulk wears off at a lower health threshold. + - bugfix: Fixes strange reagent not working on simple animals. + - tweak: Reduces the amount shock damage and bounces for the Tesla engine. + - bugfix: Fixes Syndicate Cyborg's LMG being invisible. + - bugfix: Fixes the uplink kit having implanters that were both nameless and looked + as if they had been used. + KasparoVy: + - rscadd: Added the security gasmask, sexy mime mask, bandanas, balaclava, welding + gas mask and wrestling masks for Vox. Added adjusted-state sprites for the Vox + breath, medical, and surgical masks. + - rscdel: Removed a duplicate of the human balaclava sprite. + - tweak: Modifies the Vox plague-doctor, fake moustache, sterile and medical mask + sprites to fit the Vox anatomy and animates the Vox SWAT mask. Corrects the + names of some Vox mask adjusted-state sprites. + Tastyfish: + - spellcheck: Fixed the pronouns in a few verbs and the door to 'Interrogation Observervtion'. + Tigercat2000: + - rscadd: Added 96x96 (3x) res option to icons menu +2016-01-11: + CrAzYPiLoT: + - bugfix: Fixes the footsteps sounds to the fullest. + Crazylemon: + - rscadd: Bomb guardians now automatically notify their master when they've set + something to boom, so there's less accidental friendly fire + - bugfix: Bomb guardians are only notified that their trap failed, if it ACTUALLY + FAILED. + - rscadd: Bomb guardians now are more aware of what is primed to explode. + - rscadd: Bomb guardian summoners can now defuse their guardian's bombs without + harm. + - rscadd: Brought RAGIN' MAGES back up to function. + Dave The Headcrab: + - rscadd: Added a new icon for the soy and cafe latte drinks. Icons courtesy of + Full Of Skittles, resident overlord of art. + Fox McCloud: + - rscadd: Re-arranges the armory and changes its contents minorly. + - rscadd: Adds in rubbershot ammo boxes. + - bugfix: Fixes Mutadone incurring a massive cost on the server. + - tweak: Positronic brains can no longer speak binary. + - tweak: Positronic brains can be prevented from speaking (or allowed) by toggling + their speaker on/off. + - tweak: IPC's positronic brains start off toggled off. + - bugfix: Fixes the supermatter announcement causing massive amounts of server lag. + - rscadd: Adds in tradable telecrystals. +2016-01-13: + Fox McCloud: + - bugfix: Fixes Rezadone not clearing mutated organs. + - tweak: Clone damage immunity removed from Slime People, Shadowlings, Golems, and + Vox + - tweak: Explosions will no longer destroy things underneath turfs until the turf + is exposed. + - bugfix: fixes a runtime related to revolver spinning. + - bugfix: fixes server loading taking an abnormally long time. + Kyep: + - rscadd: Blob, vine and virus outbreaks are now more clearly labeled as such, to + avoid people confusing them with each other + Tastyfish: + - tweak: NT Rep fountain pens and magistrate gold pens can now write in 5 different + colors. The IAA gets a cheap plastic equivalent. +2016-01-18: + Crazylemon: + - rscadd: New classes of shapeshifters have been sighted around the NSS Cyberiad... + - bugfix: Wizards now can't teleport to other antag spawn points. + - bugfix: Removes an extruding pixel from the left-facing IPC glider monitor sprite. + - tweak: Ragin' Mages now spawn every 7 minutes, instead of 5. Admins can further + adjust this by modifying the 'delay_per_mage' variable. + - bugfix: Ragin' Mages are now made with 100% less in-use souls (Apprentices won't + have their consciousness yoinked). + - tweak: It takes half an hour for the REAL chaos of ragin' mages to start, for + at least a semblance of normality. + Dave The Headcrab: + - rscadd: Adds the advanced energy revolver, toggles between taser and laser modes. + - rscdel: Removes the detective's revolver from the blueshield's locker. + - tweak: Changes the taser the blueshield starts with into an advanced energy revolver. + Deanthelis: + - rscadd: Added the ability for the Magnetic Gripper to pick up and place light + tiles. + Fethas: + - bugfix: Readds the hud icon showing up for master and servent + - rscadd: adds mindslave datum hud thingy based on TGs gang huds + Fox McCloud: + - bugfix: Fixes not being able to add/remove Weapon Permit from IDs. + - bugfix: Fixes the energy sword being invisible in-hand when turned on. + - bugfix: Fixes the telebaton being invisible in-hand when extended. + - bugfix: Fixes eye-stabbing not having an attack animation or hitsound. + - bugfix: Fixes some kitchen utensils playing the wrong hit-sound and playing twice + in some cases. + - bugfix: Fixes the butcher cleaver sprite being backwards. + - bugfix: Fixes the telebaton sprite being missing from the side. + - bugfix: Fixes the meat cleaver being invisible in-hand. + - spellcheck: Corrects some grammatical descriptive errors for the elite syndicate + hardsuit. + - rscadd: completely overhauls implants to TG's standards. + - rscadd: Adds storage implant. + - rscadd: Adds microbomb and macrobomb implants. + - rscadd: Adds in support for removing implants directly into cases. + - rscdel: Removes Bay style explosive implants. + - rscdel: Removes compressed matter implants. + - tweak: Tweaks the uplink to reflect removal of the old implants and inclusion + of the new. + - bugfix: Fixes/cuts down on the lag caused by monkey cubes. + Jey: + - tweak: Inflatable walls and door can now be deflated by altclicking them + - bugfix: Fixed lag from expanding multiple monkeycubes at once. + KasparoVy: + - imageadd: Adds blank icons with standardized timings for species tail wagging, + used in icon generation. + - bugfix: Fixes tails overlapping arms/limbs + gloves, etc. when facing EAST or + WEST. + - bugfix: Ensures tails will overlap stuff as normal only when facing NORTH so as + to avoid unwanted interference with the base sprite. + - bugfix: Tails now appear in ID cards, overlays things correctly. + - bugfix: Tails now overlay and are overlaid by things correctly in preview icons. + - tweak: Modifies the positioning of tail icon generation in the ID card preview + icon generation file. + - tweak: Modifies the positioning of tail icon generation in the player preferences + preview icon generation file. + - tweak: Breaks limb generation into its own layer, breaks tail generation into + a second layer that can be overlaid by limbs. + - tweak: If the user's species is flagged to have a tail that is overlapped, TAIL_LAYER + will now overlay the NORTH direction sprite of a tail now, while TAIL_UNDERLIMBS_LAYER + gets all remaining directions. Otherwise icons are generated in the traditional + manner. + - tweak: Adjusts the Unathi right arm east direction and animated tail sprites, + recolouring a random pixel and fixing a floating tail respectively. + - tweak: Adjusts position of tail layer such that tails' north direction sprites + will overlay backpacks (more importantly, satchel straps). + - tweak: Accommodates admin-overrides to the body_accessory species check by setting + the default animation template to Vulpkanin. + - tweak: Adjusts north-direction Unathi static tail sprite, now attaches to the + body in the correct location. + - rscadd: Adds some TG underwear. + - rscadd: Adds an NV science goggles worn sprite. + - rscadd: Ports Bay/TG berets. + - tweak: Adjusts beret sprite, recolours strange orange pixels. + - tweak: Adjusts NV science goggles object icon. Removed strange border and centered + it. + - rscadd: Ports Polaris' PRs 761 and 778, brings over Ragnie's awesome Ward-Takahashi + prosthetics. + Kyep: + - rscadd: Changing level to gamma/delta/epsilon now displays a special gamma/delta/epsilon + sprite on status monitors + - bugfix: Changing level to green/blue now clears the status monitors, so they no + longer show higher alert levels after the level is changed + NTSAM: + - rscadd: Added a rainbow IPC screen. + PPI: + - tweak: Modifies the effective time limit to activate the Nuclear Challenge as + Nukeops from two minutes to seven minutes + Tastyfish: + - rscadd: The QM now actually has a QM stamp instead of a fake one, as well as an + approved and denied stamp. + - rscadd: New area named 'Genetics Maintenance' solidifying/relabelling the confusing + area between the morge and Mech Bay as being fully maintenance again, but working + correctly and with proper doors. + - spellcheck: Fixed a few maintenance door names to be in parity to the rest of + the station. + - rscadd: Added the ability to print the records photo of a crew member from a security + records console. Useful for Wanted notices! + Tigercat2000: + - rscdel: You can no longer use the gibber for monkies. + - spellcheck: Cleaned up gibber.dm styling. + - rscadd: The fire alarm now uses NanoUI, with color coded alert levels. + - tweak: Upgraded NanoUI (again), fancy FontAwesome icons. + - wip: Didn't add any butts. Yet. +2016-01-20: + DarkPyrolord: + - rscadd: Adds in hardsuit sprites for Vulpkanin + FalseIncarnate: + - rscadd: Allowed cheap lighters and individual matches to be put into cigarette + packages at the cost of cigarette space. + - rscadd: Matches can now be lit and put out by striking the match on your shoes. + Good for if you lose that matchbox, or want to just feel cool. + Fox McCloud: + - bugfix: Fixes brute damage on weapons not knocking people down. + - tweaks: Tweaks implant behavior to be more consistent and unified. + - tweak: Lowers the pAI cooldown from 60 seconds to 5 seconds. + - rscadd: Raw telecrystal can now be used to charge uplink implants. + - bugfix: Fixes being unable to holster the pulse pistol + - bugfix: Fixes being able to holster shotguns + KasparoVy: + - tweak: Improved shading on all Vulpkanin hardsuit tails. + - tweak: Vulpkanin hardsuit helmet respriting (colour tweaks). + - rscadd: Vulpkanin hardsuit helmets with proper flashlight-on sprites. + Tastyfish: + - tweak: The ID computer Access Report printout now separates the access list with + commas so it's actually readable. + - bugfix: The ID computer Access Report printout isn't blank if you don't have an + authorization card in anymore. + - rscadd: In the supply ordering & shuttle consoles, one can now cancel an order + at either the Reason or Amount input dialogs. + - bugfix: Table flipping uses correct sprites. + TheDZD: + - rscadd: Adds world.Topic() handling so that users are notified in-game when pull + requests are opened, closed, or merged on the Github repo. +2016-01-23: + Fox McCloud: + - rscdel: Removes Vampire HUD + - tweak: moves the Vampire blood counter to a more easy to see location + - rscadd: Adds in a Changeling chemical counter display + - rscadd: Adds in a Changeling sting counter display + - rscadd: Vampire total blood and usable blood will now appear under status + - tweak: Changes vampire blood display to be similar to ling chemical counter + - bugfix: Fixes unnecessary toxin damage being dealt on severe bloodloss + - bugfix: Fixes human mobs not receiving proper random names + - rscadd: Adds in knight armor + - rscadd: Grants the chaplain a set of crusader knight armor + - rscadd: Adds in cult-resistant ERT paranormal space suit + - rscadd: Allows the Chaplain to convert his null rod into a holy sword with crusader + knight armor + - tweak: Chaplain's closet is now a secure closet + - rscadd: Adds in Assault Gear crate to cargo + - rscadd: Adds in military assault belt + - rcsadd: Adds in spaceworthy swat suits + - tweak: tweaks bandolier to hold 2 additional shotgun shells + - tweak: bartender starts off with +2 additional shells + - tweak: Reduces the cost of the space suit crate and doubles its contents + - rscadd: Refactors knives so their behavior is more universal + - bugfix: Fixes Hulk not properly being removed when your health drops below a threshold + - bugfix: Fixes flickering vision in a mining mech + Tastyfish: + - rscadd: Poly has taken a seminar on the latest trends in engine operations. + - rscadd: Player-controller parrots can now hear their headsets. + Tigerbat2000: + - bugfix: The nuclear disk escaping on the shuttle no longer counts as a syndicate + minor victory. + - bugfix: Cultists can once again actually greentext the escape objective. +2016-01-24: + KasparoVy: + - bugfix: Fixes markings overlaying underwear. + - rscadd: Nude icon in underwear.dmi + - bugfix: Fixes Vox robes not using the correct on-mob sprites. + - bugfix: Fixes unreported bug where there was a slim chance during character preview + icon generation that a character with Security Officer set to high would get + rendered with either the wrong beret sprite or no beret sprite at all. + - bugfix: Fixes an issue where Sigholt's fluff beret wasn't using the correct sprites. + Tastyfish: + - bugfix: Passively power-consuming borg modules, such as the peacekeeper movement + and shield module, won't spam the user infinitely if they're low on power anymore. +2016-01-29: + Crazylemon: + - bugfix: 'The DNA scanner has now undergone a seminar to recognize fake identities; + It will now scan the actual person''s identity, rather than their disguise (read: + wearing a mask with or without someone else''s ID).' + - rscadd: Matter eater now allows you to eat humans as if you were fat. + - tweak: Eating mobs with an aggressive grab now generates attack logs. + Crazylemon64: + - bugfix: For a short while, there was a clerical error where all AI communications + equipment was replaced with bananas. This has now been fixed. + - tweak: Ghosts can now see the contents of smartfridges and look at the drone console + - tweak: Humans now only produce one message when shaken while SSD + - bugfix: The supermatter no longer will irradiate everyone, everywhere, when it + explodes. + - tweak: Writing on paper will now add hidden admin fingerprints, so that you can't + forge mean notes in someone else's name. + - bugfix: Brains are no longer able to escape their brain by being a sorcerer. + - bugfix: Astral projecting with other runes on the same tile will now no longer + prevent you from re-entering + - bugfix: Voxxy that is become ex-voxxy no longer carry voxxy appearance! yaya! + FalseIncarnate: + - tweak: Allows plants to be identified as enhanced*. Enhancing plants results from + using reagents (like saltpetre) that affect the stats of a seed instead of using + mutagens/machines. *May not meet standards for being classified as "organic + produce". (This was already possible, just renames enhanced plants for easier + differentiation) + Fox McCloud: + - bugfix: Fixes mutadone not working with some genetic mutations + - bugfix: Fixes banana honk and silencer being alcoholic + - bugfix: Fixes Kahlua being non-alcoholic + - bugfix: Fixes polonium not metabolizing + - bugfix: Fixes being able to receive free unlimited boxes from the Merchandise + store + - rscadd: Adds in wooden bucklers + - tweak: Re-adds roman shield to the costume vendor + - tweak: Buffs Riot shield damage from 8 to 10 + - rscadd: Adds in a Skeleton race + - tweak: Tweaks the skeletons colors to be more realistic and to blend in less with + the floor + - rscadd: Adds in lichdom spell for the wizard + - rscadd: Adds in lesser summon guns spell for wizard + - rscadd: adds in Mjolnir and the singularity hammer as weapons the wizard can purchase + - rscadd: Wizard can purchase the charge spell from the spell book + - rscadd: Wizard can purchase a healing staff from the spell book + - tweak: Tweaks and lowers spell costs of utility spells for wizard + - tweak: Re-organizes the spellbook to be better divided into categories and have + a better window size + - tweak: Knock now opens+unlocks lockers + - tweak: Magic Missile has a slightly longer cooldown and no longer deals damage, + but has a lower cooldown is upgraded + KasparoVy: + - rscadd: Navy blue Centcom Officer's beret for use by the Blueshield. + - rscadd: Adds the new navy blue beret to the Blueshield's locker. + - tweak: Gives the Blueshield's berets (black and navy blue) the exact same strip + delay and armour as the Security Officer's beret. + - rscadd: Adds TG energy katana back and belt sprite. + - rscadd: Bo staff back sprite. + - tweak: Adjusts energy katana sprites to make the weapon stand out a bit more from + the regular katana. + - rscadd: Cutting open the toes of footwear so species with feet-claws can wear + them. + - rscadd: Toeless jackboots. + - tweak: Cleans up glovesnipping and lighting a match with a shoe. + - tweak: Lighting a match with a shoe produces a more appropriate message, handled + at the same standard as glove-snippingboot-cutting. + Tastyfish: + - rscadd: Cargonia now has its own section in the manifest. + TheDZD: + - rscdel: Due to budget cuts and reports of operatives accidentally firing enough + bullets to reach a state of what our scientists refer to as "enough dakka," + Syndicate High Command has decided to restore the Syndicate Strike Team arsenal + to using standard-issue L6 SAW ammunition. +2016-01-31: + Crazylemon64: + - bugfix: Syndicate borgs can now interact with station machinery + - rscadd: People with slime people limbs can now *squish + - tweak: Skrell's vulnerability to alcohol is checked on their liver, now - a liver + transplant will let them take alcohol like a champ - lacking a liver will have + the same effect as being a skrell, when drinking + FalseIncarnate: + - rscadd: Adds in the Magic Eight Ball toy, found in Claw Game prize orbs. + - rscadd: Adds in the Magic Conch Shell, an admin-only shell of power. + Fox McCloud: + - rscadd: Updates Summon Guns and Magic to include many of the new guns + - tweak: Summon Guns/Magic can no longer be used during Ragin' Mages + Tastyfish: + - rscadd: The emergency shuttle status in the Status tab now has ETA/ETD/etc like + before. + - tweak: Code Gamma+ now has a 5 minute emergency shuttle call, like Red. + pinatacolada: + - rscadd: Adds NanoUI to the operating computer + - rscadd: Adds health announcing, critical and oxygen damage aural alerts to the + computer, with a menu to selectively turn them on and off +2016-02-10: + Crazylemon64: + - tweak: The cloner now checks for NO_SCAN on the brain when scanning - unclonable + species are now truly unclonable. You are still able to revive them with a brain + transplant and a defib, however. + - rscadd: A tier-4 DNA scanner linked to a cloning system will now be able to reproduce + a body from a brain's DNA, in event of the original corpse being gibbed or similar. + - bugfix: Species with organic limbs and NO_BLOOD will no longer bleed (though still + on hit - write that off as "bone powder") + - tweak: Skeletons now lack internal organs, except for the runic mind which exists + in their head - an analogue for the brain + - rscadd: Skeletons that drink milk will be regenerated at a moderate pace, have + a small chance of mending bones, and will praise the great name of mr skeltal + - tweak: Adds a reagent system for species reacting to specific reagents + - rscadd: Slime People can now select from all human hairstyles, and their "hair" + will be tinted a shade of their body. + - tweak: Increases the frequency of the cortical borer event. + - tweak: People with borers cannot commit suicide - this applies to a controlling + borer, too. + - tweak: Borers can no longer overdose their hosts. + - tweak: Borers can now inject Saline-Glucose, Spaceacillin, Hydrocodone, Mitocholide, + Salbutamol, Capulettium+, and Charcoal. Styptic was removed, as it's pathetic + at healing when directly injected. Salicyclic acid was removed too, as its functionality + is duplicated by both hydrocodone and saline-glucose. + - bugfix: A mind trapped by a cortical borer can now understand things it could + understand when normally in its body. + - rscadd: Changes chemistry's welding tank to a wall-mounted version, to increase + the room available. + - rscadd: You can now gib butterflies and lizards with a knife + - rscadd: Ghosts can now follow mecha + - bugfix: You can now access an R&D console by emagging it - it did nothing before. + - bugfix: Walls will now properly smooth and show damage. + - bugfix: Fixes the dialog that occurs when the AI shuts off to actually do what + it says it does + Fox McCloud: + - bugfix: Fixes not being able to attach IEDs to beartraps + - bugfix: Can no longer spamclick someone to death using headslamming on a toilet/urimal + - tweak: Toilet/urinal headslamming now plays a sound + - tweak: Toilet headslamming damage reduced slightly + - rscadd: Can now fill open reagent containers in a toilet to receive "toilet water". + - tweak: No more message spam when someone fills a container using a sink + - rscadd: Can now wash your face using a sink, which washes away lipstick and wakes + you up slightly + - tweak: Washing things will now use progress bars + - tweak: Ensures consuming a single syndicate donk pocket won't get you addicted + to meth + - tweak: Kinetic Accelerators and E-bows automatically reload + Glorken: + - rscadd: Added a Knight Arena for Holodeck. + - imageadd: Added red and blue claymore sprites. + - spellcheck: Changed overrided to overrode when emagging Holodeck computer. + KasparoVy: + - rscadd: Vox versions of the Officer SWAT sechailer + HOS SWAT sechailer + Warden + SWAT sechailer. + - rscadd: Resprited versions of most Human masks to fit Unathi, Tajara and Vulpkanin. + - rscadd: Warden now gets their own version of the SWAT sechailer in their locker. + - tweak: HOS now gets the appropriate version of the SWAT sechailer in their locker. + - tweak: Repositioned smokeables now available for Vox, Unathi, Tajara and Vulpkanin. + - tweak: Properly shades Vox bandana down-state sprites. + - rscadd: Readds Tajaran bald hairstyle. + - rscadd: Alternate style of non-Human breath mask (incl. surgical/sterile mask) + down-state positioning. + - tweak: Corrects all non-Human species' breath mask (incl. surgical/sterile mask) + down-state icons to use the right position style. + - tweak: Minor adjustments to Tajaran breath mask up-state sprites. + PPI: + - rscadd: Adds a reconnect button to the File menu in the client. + - rscadd: Adds head patting + Regen: + - tweak: Powersink can now drain a lot more power before going boom + - tweak: Buffed the powersinks drain rate + - tweak: Buffed explosion from an overloaded powersink, try to find it instead of + overloading the grid. + - rscadd: Admin log warning before the powersink explodes + Spacemanspark: + - rscadd: Miners can now utilize the power of mob capsules to take along their lazarus + injected mining creatures! + - rscadd: Store your Pokemo- er, sorry, I mean mining mobs that you've captured + in the lazarus capsule belt. + Tastyfish: + - bugfix: Species that don't breathe can kill themselves now! + - rscadd: Suicide messages are now catered to your species. + - tweak: Shortened the default pill & patch name when using the ChemMaster. + - rscadd: The chaplain now has a service radio headset, as Space Jesus intended. + TheDZD: + - tweak: When Ahelping, "Question" is now "Mentorhelp" and "Player Complaint" is + now "Adminhelp." + - tweak: Mentorhelps and PM replies from mentors appear in a bold aqua blue color. + - tweak: Adminhelps and PM replies from admins appear in a bold bright red color. + - tweak: PM replies from players appear in a dull/dark purple color. + - rscadd: Adds admin attack log to players being converted to cult. + - rscadd: Adds shadowling thrall jobbans. + - rscadd: Jobbanned players who are converted to shadowling thrall, revolutionary, + or cultist will have the control of their body offered up to eligible ghosts. +2016-02-13: + Crazylemon64: + - tweak: Relaxes the check on what atoms you can follow to any movable atom + - tweak: Mages are now more ragin + - tweak: Admins can now adjust the total number of wizards at runtime by tweaking + either max_mages, or players_per mage + DaveTheHeadcrab: + - rscadd: Adds new worn icons for duffelbags to better reflect their size, compliments + of WJohn at /tg/ + FalseIncarnate: + - rscadd: Adds burritos, made from cutlets, beans, rice, capsacin oil (hotsauce), + cheese, and flat dough (because we lack proper tortillas) in the microwave. + - rscadd: Adds chimichangas. You know you want a deep-fried burrito. + Fox McCloud: + - tweak: Updates some spell icons with better/higher quality icons + - tweak: Updates unarmed attacks to allow for more customization + - tweak: Updates martial arts so they factor in specie's attack messages and sounds + - tweak: Re-balances Sleeping Carp fighting style + - tweak: Re-balances Bo Staff + - tweak: 'Rebalances Golem: they should now be spaceproof, fire+cold proof, rad + proof, virus immune, clonable, parapen+syringe gun immune, deal increased melee + damage. Their armor has been reduced to 55 melee across the board, their slip + immunity removed, pain immunity removed, and they''re slightly slower' + - bugfix: Fixes Ei Nath generating two brains + - bugfix: Ensures the Necromatic Stone generates actual skeletons + - bugfix: Can now strip PDA/IDs from Golems + - bugfix: Fixes sleeping carp grab not being an instant aggressive grab + - bugfix: Fixes an exploit with declaring war on the station + KasparoVy: + - rscadd: Orange and purple bandanas for all station species. + - rscadd: The ability to colour bandanas with a crayon in a washing machine. + - tweak: Refactors the bandana adjustment system. + - tweak: Minor adjustments to Tajaran and Unathi bandana east/west sprites. + - tweak: Adjusting a bandana will now take if off of your head/face and put it in + an available hand. If both hands are available, it goes in the selected hand. + - bugfix: Adjusting a coloured bandana will no longer revert it to the original + coloured icons anymore. + - bugfix: Adjusting a bandana from mask-style to hat-style means the bandana won't + obscure your identity anymore. + - rscadd: Greys now use re-positioned smokeables. They no longer smoke out the eyes. + TheDZD: + - bugfix: Fixes spacepods being able to shoot through walls. + - tweak: Lowers spacepod weapons fire delay. + - tweak: Increases spacepod weapons energy costs. + - tweak: Makes spacepods move at speeds not rivaling those of photon beams. They + are now a hair bit faster than a person with a jetpack. + - tweak: Reduces battery costs for spacepod movement. +2016-02-24: + Crazylemon64: + - tweak: The defib should be more reliable on people who have ghosted + - tweak: The defib will now give a message if the ghost is still haunting about + - rscadd: Attacking someone with an accessory will now let you put things on them + without having to strip them. + - bugfix: Borers will now properly detach upon death of a mob they are controlling + - tweak: Borers can now see their chemical count while in control of a mob + - rscadd: Borers can now silently communicate with their host - this is not available + to the host until the borer has either begun to communicate, or has taken control + at least once - this is to avoid spoiling that the borer exists + - tweak: Borers won't be able to talk out loud inside of a host, by default - they + can remove this safeguard with a verb under their borer tab. Borer hivespeak + is unaffected. + - tweak: Borers infesting and hiding are now silent. + - tweak: Made borer's chem lists more nicely formatted + - bugfix: No more superspeed attacking simplemobs + - tweak: New players now show up properly under the "who" verb when used as an admin + - rscadd: Mining drones will now automatically collect sand lying around + - bugfix: RIPLEYs can now drill asteroid turfs for sand + - rscadd: You can now load exosuit fuel generators with items containing their material + - this means you can fuel yourself off of ores, but this will be highly inefficient + and cost you mining points later on, as you can't take fuel back out. + - rscadd: You can now load the fuel generators from an ore box. + - tweak: The plasma generator now produces 3x as much power from the same amount + of fuel - this lets it even remotely compete with the uranium generator. + - tweak: You can now light cigarettes off of burning mobs. + - tweak: Exosuit tracking beacons now fit in boxes - prior, they were far too large + for even a backpack, as they shared the same size as all other mecha equipment + - tweak: Miners can now collect ore by walking over it with an ore satchel on. + FalseIncarnate: + - rscadd: Adds prize tickets as a replacement for physical arcade prizes. + - rscadd: Adds a buildable prize counter to exchange tickets for prizes. + - rscadd: Adds a bike. Despite what Prof. Oak might claim, you can ride it indoors. + - rscadd: Adds colorful wallets, for that old school arcade pride. + - bugfix: Fixes accidental removal of plump helmet biscuit recipe. + - rscadd: Temporarily adds a prize counter to the bar (Cyberiad) or dorms (MetaStation), + and adds a max upgrade one to the Ninja Holding Area (Cyberiad z2) + - bugfix: Fixes Metastation. Seriously fixed a lot, just read the PR description + for the full list. + FlattestGuitar: + - rscadd: Adds IPC alcohol and a few derivative drinks + - tweak: IPCs can now drink and be fed from glasses + Fox McCloud: + - tweak: Laser eyes mutation no longer drains nutrition + - tweak: 'splits the EMP kit into two things: the standard EMP kit (2 grenades and + an implant), and the EMP flashlight by itself' + - tweak: nerfs heart attacks so they do less damage + - tweak: Pickpocket gloves now put the item you strip into your hands as opposed + to the floor + - tweak: Picketpocket gloves can now silently strip accessories + - tweak: Pickpocket gloves will no longer give a message for messing up a pickpocket + KasparoVy: + - bugfix: Adjusting masks while they are not on the face will no longer turn off + internals. + - bugfix: Adjusting masks while they are not on the face will now cause the mask + to hide/reveal the wearer's identity the next time it's worn as intended. + - rscadd: Adds the ability to open/close bomber jackets. + - rscadd: Adds a security bomber jacket. This jacket inherits the protection and + storage capabilities as a standard Security vest with additional bomber jacket + benefits. + - rscadd: Adds UI button in top left of screen for jacket adjustment. + - tweak: Replaces the standard bomber jacket in the Pod Pilot bay with the Security + version. + - tweak: Centralizes jacket/coat adjustment handling. + - tweak: All jackets start closed by default. + - rscadd: Geneticist duffelbag on-mob sprite (for all species). + - rscadd: Vox-fitted backpacks, satchels, ERT backpacks, duffelbags and defib unit. + - tweak: Refactors back-item icon generation. + - bugfix: Typo in the description of Santa's sack. + - bugfix: Missing punctuation and gender macros in the description of the bag of + holding. + - bugfix: The tweak to back-icon generation fixes a bug where the wrong sprite name + was being used to generate back-item icons. + PPI: + - rscadd: Adds the ability to hide papers in vents. You can now leave a romantic + love letter, exchange information in secret, or hide papers infused with the + power of nar'sie from sight. + Regen1: + - rscadd: Adds the Immolator laser gun, a modified laser gun with 8 shots that will + ignite mobs, can be made in R&D + Spacemanspark: + - rscadd: Adds *yes and *no emotes to Synthetics. Glory to Synthetica. + Tastyfish: + - tweak: The PDA system has been completely redone behind the scenes! It should + be functionally similar, although there is now a Home and Back button at the + bottom as appropriate. + - rscadd: All of the heads now have multicolored pens. + - rscadd: EngiVend now has 10 camera assemblies. + - tweak: Borgs can now use vending machines. + - rscadd: There are now picture frames that can be made from the autolathe or wood + planks for papers, photos, posters, and canvases! + pinatacolada: + - tweak: Makes the Protect Station AI law board no longer consider people that damage + the station crew, instead of human + ppi: + - tweak: When revealed Revenants will not be able to move at the maximum move speed, + nor be able to pass through any solid object, like walls, windows, grills, computers + and mechs. +2016-02-26: + FalseIncarnate: + - tweak: Chocolate can now make you fat, as expected. + Fox McCloud: + - tweak: stamina damage now regenerates slightly faster + - rscadd: Adds in whetstones for sharpening objects + - tweak: Kitchen vendor starts off with 5 salt+pepper shakers + - tweak: Can now point while lying or buckled + - bugfix: Fixes Capulettium Plus not silencing + - bugfix: Fixes slurring, stuttering, drugginess, and silences last half of what + they should + KasparoVy: + - bugfix: Jackets that start open are recognized as actually being open already + now. This fixes a bug with certain items that don't have an open state, or cases + where it ended up giving an item the wrong icon (one that didn't exist) + Spacemanspark: + - bugfix: Fixes synthetics from giving off the proper message in the chat box when + using the *yes and *no emotes. + Tastyfish: + - rscadd: Wheelchairs, janicarts, and ambulances can now go through doors according + to the user's driver's access. +2016-03-07: + Crazylemon64: + - rscadd: People with VAREDIT can now write matrix variables + - rscadd: People with VAREDIT can now modify path variables + - tweak: Refactors the variable editor code somewhat. + - rscadd: The buildmode area tool now shows reticules of what you've selected. + - bugfix: Switching mobs while using the buildmode tool no longer screws up your + UI. + - tweak: Refactors buildmode so it's no longer a special-case system. + - rscadd: Adds a copy mode to build mode, which lets you duplicate objects. + - tweak: Any mob in buildmode can work at the fastest possible rate. + - bugfix: Fixed a problem where the icons of a person would not correctly update + when changing gender. + - tweak: One's hairstyle only adjusts on gender change if it's incompatible with + your new gender. + - bugfix: Fixed a bug where a person's icon would only be updated if their sprite + had a new layer added or removed. + - bugfix: You no longer lose your name when monkeyized and reverted - you'll still + look like a monkey while you're a monkey, though. + - bugfix: Your organs will now match your gender when you are cloned. + - bugfix: Skeletons (when a body rots) no longer retain a fleshy torso. + - bugfix: Putting people in an active cryotube now produces the message on insertion, + rather than release. + - bugfix: An EMP'd cloning pod will now display its sprites correctly. + FalseIncarnate: + - tweak: Water Balloons can be filled from more sources than just beakers and watertanks. + Fox McCloud: + - bugfix: Fixes the "yeah" glasses so the sound doesn't vary and a message is displayed, + on use + - bugfix: Noir mode only activates when the glasses are equipped to your actual + eyes + - rscadd: Noir Glasses mode can be toggled on or off (defaults to off) + - bugfix: Mimes can no longer use spells and continue speaking + - tweak: Mime abilities are now spells with proper icons + - tweak: Mime wall now last 30 seconds, up from 5 + - tweak: forecfields/invisible walls now block air currents + - rscadd: Adds the Sleeping Carp scroll to the uplink for 17 TC + - bugfix: Fixes Shadowlings being able to use guns + - bugfix: Fixes sleeping carp scroll users being able to use guns + - bugfix: Fixes the Experimentor throwing one item at a time + - tweak: Experimentor menu now automatically refreshes after use + - tweak: Lowers surgery times across the board + - tweak: Removes scalpels causing 1 damage on successful surgery + - tweak: Removes random chance to fracture ribs on a successful surgery + - tweak: Mining drills now have an edge + KasparoVy: + - tweak: Jackets who have the verb available but are not intended to be adjusted + will not have the action button available. + - bugfix: You can now adjust breath masks while buckled into beds and chairs. + - bugfix: Known issues with adjusted jackets using the wrong sprites. + - rscadd: Blueshield coat in hand and item icons. + - rscadd: Hulks now rip apart adjustable and droppable jackets. The items stored + in the jackets get dropped on the ground. + Tastyfish: + - tweak: Infrared emitters can now be rotated while already in an assembly via the + UI popup. + - tweak: The infrared emitter can no longer be hidden inside of boxes and still + work. + - rscadd: The beach now has a border and is splashier. + - rscadd: Gives Psychiatrist a paper bin, clipboard, and multicolored pen. + - rscadd: Gives the Librarian / Jouralist a multicolored pen. + - rscadd: Gives the NT Representative a clipboard. + - tweak: The ethanol-based neurotoxin drink is now called Neuro-toxin to avoid being + confused with the deadly toxin. + VampyrBytes: + - bugfix: Fixes emotes ending with s needing 2. Emotes now work with grammatical + options eg ping or pings, squish or squishes + - tweak: Updated emote help with missing emotes. Help will also show any species + specific emotes for your current species +2016-03-08: + Crazylemon64: + - tweak: Slime people are now more vulnerable to low temperatures. + - rscadd: Slime people are able to slowly regrow limbs at a high nutrition cost. + - rscadd: Slime people now slowly shift color based on reagents inside of them - + disabled by default, toggle it with an IC verb + - tweak: Slime people's cores are more vulnerable to damage + - bugfix: Species-related abilities now properly are removed - no more vox hair + stylists, unfortunately. + Fethas: + - bugfix: the nest buckle now looks for the right organ path + - bugfix: Fixed some sprites. + - bugfix: No more putting no drops in rechargers, + Fox McCloud: + - soundadd: Implement's goon's gibbing sound + - soundadd: Implement's goon's gibbing sound for robots/silicons + - sounddel: Removes old gibbing sound + Spacemanspark: + - rscadd: Lazarus Injector's can now be emagged to activate their special features, + alongside using EMPs on them. + Tastyfish: + - rscadd: Mimes now have a new ore, Tranquillite, used to bring peace and quiet + to the station. + - rscadd: There are also permanent invisible walls and silent floors that can be + made from tranquillite. + - rscadd: The Recitence mech is now buildable! + - tweak: The Recitence mech is now playable! + - tweak: Mid-round selection for various creatures and antagonists now consistently + asks permission. + TheDZD: + - rscadd: Adds justice helmets with flashing lights and annoying sirens. + - rscadd: Adds crates containing said helmets. + - rscadd: Also includes a version of the helmet that can only be spawned by admins, + and just has a single red light in the center instead of the stereotypical police + blinkers. + monster860: + - bugfix: Space pod transitions are now fixed. +2016-03-16: + Crazylemon64: + - tweak: Being in godmode now makes you immune to bombs + - rscadd: Science members now get compensated when they ship tech disks to centcomm. + - rscdel: Science crew are no longer paid when they "max" research. + - bugfix: Roboticists now get credit for making RIPLEYs and Firefighters + - tweak: Slime people can now regrow limbs on a more lax nutrition requirement + - tweak: Enhances the nutripump+ to let slime people regrow limbs with it active + - bugfix: Skeletons, slime people, IPCs, and Diona no longer leave blood when hit + - bugfix: Rejuvenating a slime person will no longer clog up their "blood" + - tweak: Slime people will now regenerate "blood" from having water in their system + - tweak: The decloner can now be created again + - rscadd: Environment smashing mobs can now destroy girders. + DaveTheHeadcrab: + - tweak: Removes the check for species on the update_markings proc. + FalseIncarnate: + - tweak: Xeno-botany is now more user-friendly, and less random letters/numbers. + - rscadd: Hydroponics now has a connector hooked up to the isolation tray and a + new connector in their back room for those strange plants that like spewing + plasma or eating nitrogen. + - rscadd: You can now (finally) build the xeno-botany machines, and science can + print off their respective boards. + Fethas: + - tweak: Syringes are no longer sharp + - bugfix: byond likes direct pathing so item/organ/internal not item/organ even + if it shouldn't be in the internal_organs list. This was preventing the list + from doing stuff correctly. + - tweak: fixed ipc organ manipulation surgery, you can now insert a replacment ipc + organ directly instead of needing a screwdriver in your main hand + - bugfix: nanopaste now will repair organs with robotic >= 2 instead of > 2 cuase + i am an idiot + - bugfix: Fix, hopefully, for a runtime for clientless mobs whos head are cut off... + - bugfix: Hopefully fixes issues with diona eyes + - bugfix: Though shalt not eat robotic organs..including cybernetic implants.. + - bugfix: ITS SURGERY_STEP/DETHRALL NOT SURGERY_STEP/INTERNAL/DETHRALL + FlattestGuitar: + - rscadd: Adds three new synthanol drinks + - tweak: Drinking synthanol is now a bad idea if you're organic + - tweak: A glass of holy water now looks like normal water + Fox McCloud: + - soundadd: Adds in drink fizzing sound + - tweak: Drink/bartender recipes use this new fizzing sound in addition to a few + other recipes + - soundadd: Adds in a fuse burning sound + - tweak: Bath salts, black powder, saltpetre, and charcoal use this sound now + - soundadd: Adds in a matchstrike+burning sound + - tweak: Lighting a match triggers this new sound + - soundadd: Adds in scissors cutting sound + - tweak: Cutting someone's hair uses this new sound + - soundadd: Adds in printer sounds + - tweak: printing off papers from various devices typically uses these sounds + - soundadd: Adds computer ambience sounds + - tweak: black box recorder and R&D core servers both play this sound at random + rare intervals + - tweak: Reduces the tech level (and requirement) for nanopaste + - tweak: Reduces the tech level (and requirement) for the plasma pistol + - tweak: Removes Nymph and drone tech levels + - tweak: Reduces tech levels on the flora board + - tweak: Adds tech level requirements to mech sleepers, mech syringe guns, mech + tasers, and mech machine guns + - tweak: Increases tech cost of the decloner + - tweak: Removes the pacman generators + - tweak: Removes emitter + - tweak: Removes flora machine (functionless anyway) + - tweak: Removes the pre-spawned nanopaste + - tweak: Removes space suits + - tweak: Removes excavation gear + - tweak: Replaces the soil with actual hydroponic trays (more aesthetic than anything) + - tweak: Removes most external asteroid access from the station + - tweak: Excavation storage is now generic science storage + - tweak: removed the plasma sheet + - bugfix: Fixes augments not showing up in R&D unless specifically searched for + - bugfix: Fixes some augments being unavailable in mech fabs + - bugfix: Fixes augments having no construction time + - bugfix: Fixes xenos not gaining plasma when breathing in plasma + - bugfix: Fixes plasma reagent not generating plasma for a person + - rscadd: Screaming has different sounds based on being male or female + - soundadd: Implements Goon's screaming sounds. + - rscadd: Screaming tone is now based on age of character instead of being random + - tweak: Ups the cooldown on screaming from 2 seconds to 5 seconds + - tweak: Removes chance for Whilhelm scream + - rscadd: Borgs can now scream + - rscadd: Monkey's now have a unique screaming sound + - rscadd: IPCs now scream like cyborgs + - rscadd: Updates slot machines to have higher jackpots and more payouts with more + interesting sounds + - rscadd: 'Adds X-Ray, Thermal, Anti-tun, and Reviver implants to the nuke ops uplink + (augments come with one auto-implanter) rcsadd: Adds in augment auto-implanter, + which inserts and implant without surgery' + - tweak: tweaks a large number of chems; behaviors are largely retained, but new + flavor messages, probabilities, etc may be present; overall, you can expect + chems to do the same thing + - tweak: 'Tabun re-replaced with Sarin rcsadd: New reagent: cholesterol: if overdosed + on, it can cause a heart attack--fatty foods, cheese, eggs, and some meats all + produce cholesterol in your body.' + - rscadd: Mixing Sarin, Meth, or Cyanide will poison in a very small area of the + reaction if you're not on internal OR not wearing a gas mask + - rscadd: Chemist warddrobe now has two gas masks + - tweak: Teslium will now impact synthetics AND organics + - bugfix: Fixes facehuggers hugging already infected people + - bugfix: Fixes facehuggers hugging people while dead + - bugfix: Fixes Embryo's developing twice as fast as they should + - bugfix: Fixes up some behaviors with xeno eggs + - tweak: Xeno acid can now melt through floors and the asteroid + - rscadd: Xeno's now play the gib sound when actually gibbed + - rscadd: Implements Changeling headcrabs/headspiders + - bugfix: Fixes xenos not throwing their organs when gibbed + - bugfix: Fixes swallowed mobs not being ejected when a human is gibbed + - rscadd: Adds in spider eggs reagent, an infectious reagent that requires surgery + to correct + - bugfix: Fixes EMPs causing eye implant users to be permanently blind + - tweak: Increases bag of holding's storage capacity + - rscadd: Removing a heart no longer kills the patient instantly, but induces a + heart attack + - bugfix: Demon hearts will not work + - bugfix: Should now actually be able to re-insert hearts + - rscadd: Reworks addictions to bettter differentiate them betweeen overdosing and + make them more realistic. + - tweak: 'changes which chems are addictive, currently, the follow reagents are + now addidctive: meth, crank, krokodil, bath salts, space drugs, perfluoradecalin, + omnizine, coffee, nicotine, fliptonium, ultra lube, surge, fake cheese, weird + cheese, ephedrine, diphenhydramine, teporone, and morphine' + - rscadd: sleepers help you recover from addiction faster + - rscadd: Can now make cable coils in autolathes + - bugfix: Fixes the slot machine announcements not displaying properly + Tastyfish: + - tweak: The super fart mutation now gives you a spell-like ability instead of augmenting + the emote. + - tweak: Vampire abilities are now in their own Vampire tab, as well being action + buttons at the top, like spells. + - bugfix: Cloning a vampire no longer makes them lose their abilities. + - bugfix: Vampires can no longer hypnotize chaplains. + - bugfix: Being a full vampire (500+ total blood) actually makes you immune to holy + water reliably now. + - rscadd: 'Some old away missions are back: Academy, Black Market Packers, Space + Hotel, Station Collision, and Wild West. Go out and round up some hostiles!' + - bugfix: Shuttle consoles now pair up to the engineering, mining, research, or + labor shuttle when built or used before pairing, as long as the shuttle is near + the console, or the shuttle is moved to be nearby. + monster860: + - rscadd: Mining station now has a podbay. + - rscadd: Ore scooping module for the spacepod. + - rscadd: 'Three mining lasers for spacepod: Basic, normal, and burst.' + - bugfix: Shooting weapons south or west of spacepod will actually hit adjacent + targets now, and won't shoot through walls anymore. + taukausanake: + - rscadd: Mice can now be picked up like diona +2016-03-22: + Crazylemon64: + - bugfix: Repairs all sorts of eldritch occurences that happen when you put an organic + head on an IPC body, as well as some decapitation bugs + - bugfix: Makes heads keep hair on removal + - bugfix: Amputated limbs from a DNA-injected individual now will keep their appearance + of the DNA-injected person + - bugfix: Wounds will vanish on their own now + - rscadd: Admins now have an "incarnate" option on the player panel when viewing + ghosts for quick player instantiation + - bugfix: Fixes a runtime regarding failing a limb reconnection surgery + - bugfix: Copying a client's preferences now overrides the previous mob's DNA + - bugfix: A DNA injector is now more thorough, and affects the DNA of mobs' limbs + and organs + - bugfix: DNA-lacking species can no longer be DNA-injected + - bugfix: Brains are now labeled again + - rscadd: Splashing mitocholide on dead organs will make them live again. + - rscadd: The body scanner now detects necrotic limbs and organs. + - bugfix: pAIs and Drones are now affected by EMPs and explosions while held. + Fethas: + - rscadd: Adds a surgery for infection treatmne/autopsys that is simply cut open, + retract, cauterize + - bugfix: fixes a dumb error in internal bleeeding surgerys + - rscadd: Chaos types no longer random teleport, but will make the target hallucinate + everyone looks like the guardian. + FlattestGuitar: + - rscadd: Adds a snow, navy and desert military jacket. + Fox McCloud: + - tweak: Removes random 1% chance to heal fire damage + - tweak: Removes passive healing from resist heat mutation + - tweak: Regen mutation heals every cycle (albeit less, on average), but doesn't + cost hunger + - bugfix: Fixes not being able to speak over xeno common or hivemind when you receive + the Xeno hive node + - rscadd: Adds in the ability to transfer non-locked metal+glass only designs from + the protolathe to autolathe + - tweak: Changes Outpost Mass Driver to prevent accidental spacings + - tweak: Shadow people no longer dust on death, are rad immune+virus immune, and + can be cloned. Slip immunity removed + - tweak: Shadowlings no longer get hungry or fat and no longer dust on death + KasparoVy: + - rscadd: The ability to change your head, torso and groin as an IPC in the character + creator. Non-IPCs cannot access the parts. + - rscadd: Head, torso and groin sprites for all mechanical limb/bodypart brands + but Morpheus and the unbranded ones (since those already exist) from Polaris. + - rscadd: Faux-eye optics for non-Morpheus heads. + - rscadd: The ability to change optic (eye) colour if you've got a non-Morpheus + head. + - rscadd: The ability to choose human hair styles (wigs) and facial hair styles + (postiche) with non-Morpheus heads. Non-Morpheus heads cannot choose screens. + Conversely, Morpheus heads cannot choose wigs or facial hair. + - rscadd: Two hair styles from Polaris. + - rscadd: The ability for IPCs to wear undergarments (shirts and trousers). + - rscadd: Antennae (colourable) for IPCs. + - tweak: IPC monitor adjustment verb will now adjust optic colour if the head is + non-Morpheus. + - bugfix: Combat/SWAT boots can now be toecut and jacksandals can't. + - bugfix: ASAP fix to what would've broken the ability to configure prostheses in + character creation. + - bugfix: Adjusted masks no longer block CPR (including bandanas). + - bugfix: You can no longer run internals from adjusted breath masks (or airtight + adjustable masks in general). + Regens: + - tweak: Robotic hearts will now properly give the mob a heart attack instead of + just damaging it when EMP'd + - rscadd: Assisted organs will now also take damage from EMP's + - bugfix: Internal robotic and assisted organs will now actually take damage from + EMP's + Tastyfish: + - rscadd: Adds PDA chatrooms. Post memes! Talk to your fellow collaborators! Get + caught! + - tweak: You can now set the PDA messenger to automatically scroll down to new messages. + - rscadd: Pet collars now act as death alarms and can have ID's attached to them. + - tweak: All domestic animals can now wear collars. + - rscadd: You can now make video cameras at the autolathe. + TheDZD: + - bugfix: Fixes an instance of old code being so incredibly, unbelievably, makes-me-want-to-stab-myself-in-the-eye-edly + idiotic. + TravellingMerchant: + - imageadd: Kidan have new sprites! + tigercat2000: + - rscadd: Nukeops now have an assault pod, they can use it for 30 TC. Loud and mean. + - bugfix: Lighting overlays can no longer go below 0 lum_r/g/b + - bugfix: Shuttles will work with lighting better. + - bugfix: Wizards can no longer teleport to prohibited areas such as Central Command. +2016-03-25: + Crazylemon64: + - bugfix: You now will actually have the correct `real_name` on your DNA. + - bugfix: No more roundstart runtimes regarding IPC hair. + - bugfix: Mitocholide rejuv will work more usefully now. + - bugfix: Limbs and cyborg modules will no longer appear in your screen. + - bugfix: Cyborg module icons are now persistent throughout logging in and out. + - bugfix: Various cyborg modules, like engineering, now use the proper icon. + FlattestGuitar: + - rscadd: Adds confetti grenades. + Fox McCloud: + - bugfix: Fixes Sleeping Carp combos not having an attack animation + - bugfix: Fixes several chems not properly healing brute/burn damage, consistently, + as intended + KasparoVy: + - bugfix: Unbranded heads and groins no longer invisible. + - bugfix: Zeng-hu left leg will now be in line with the body when facing south. +2016-03-26: + Fox McCloud: + - rscadd: Adds in dental implant surgery. Implant pills into people's teeth. + - tweak: Major rebalance and Shadowling update (https://github.com/ParadiseSS13/Paradise/pull/3986 + for details). In general, Shadowlings can no longer enthrall or engage in Shadowling + like behavior, pre-hatch. Post-hatch, shadowlings are much more powerful, with + a ride array of New abilities such as extending the shuttle or making thralls + into lesser shadowlings. Shadowling gameplay should not revolve almost entirely + around darkness, as opposed to pre-hatch shenanigans. + - rscadd: Robotics now has a "sterile" surgical area for performing augmentations + - rscadd: Adds the FixOVein and Bone Gel to the autolathe + - tweak: ensures all surgical tools have origin tech on them; lowers origin tech + on FixoVein + KasparoVy: + - rscadd: Slime People can now wear underwear. + - rscadd: Slime People can now wear undershirts. + TheDZD: + - tweak: NT has removed trace amounts of a highly-addictive substance from the "100% + real" cheese used in cheese-flavored snacks. As a result, incidence rates of + crewmembers becoming addicted to Cheesie Honkers should reduce to zero. + - tweak: After receiving complaints about crewmembers often being unable to physically + function without a back-mounted barrel of coffee, NT has replaced station all + sources of coffee on the station, including coffee beans themselves with a largely + decaffeinated version. It was funny the first time almost every crewmember aboard + the NSS Cyberiad was lugging around their own oil barrel filled with coffee, + it wasn't so funny, nor good for productivity the eighteenth. +2016-04-02: + Crazylemon64: + - rscadd: Metal foam walls will now produce flooring on space tiles + - bugfix: Syringes will now draw water from slime people. + FalseIncarnate: + - tweak: Let's you know when your container is full when filling from sinks. + - tweak: Prevents splashing containers onto beakers and buckets that have a lid + on them. + - rscadd: Pill bottles can now be labeled with a simple pen. + - tweak: Beakers/buckets (and pill bottles) now accept 26 character labels from + pens. + Fethas: + - tweak: Various spells have had a tweak to stun/reveal/cast, some other number + stuff... + - rscadd: Nightvision + - tweak: harvest code is now in the abilites file. + - rscadd: New fluff objectives + - bugfix: Hell has recently remapped its blood transit system and you can now once + again crawl through blood. We are sorry for the-GIVE US YOUR SOUL! + FlattestGuitar: + - tweak: Alcoholic beverages now have proper levels of ethanol in them. Good luck + passing out after a beer. + Fox McCloud: + - rscadd: Adds in the Lusty Xenomorph Maid Mob; currently admin only. + - bugfix: Fixes xenomorph brains having the wrong sprite, no origin tech, and incorrect + name + - tweak: removes xenomorph egg from hotel + - tweak: upgrades are no longer needed to for the available toys in the prize vendor + - rscadd: Implements Advanced Camera Consoles. A type of camera console that function + like AI's vision style. Non-buildable/accessible. + - rscadd: Adds in Xenobiology Advance Cameras. A type of camera console that functions + like advanced cameras, but only works in Xenobiology areas; can move around + slimes and feed them with the console as well. Also non-buildable/accessible + (for now). + - rscadd: Adds in cerulean slime reaction that generates a single use blueprint. + On use it colors turfs a lavender color + - rscadd: Adds disease1 outbreak event + - rscadd: Adds appendecitis event + - rscadd: Roburgers now properly have nanomachines in them + - rscadd: Re-adds nanomachines + - tweak: Experimentor properly generates nanomachines instead of itching powder + - bugfix: Fixes big roburgers having a healing reagent in them + - rscadd: Adds nanomachines to poison traitor bottles + - rscadd: Tajarans can now eat mice, chicks, parrots, and tribbles + - rscadd: Vulpkanin and Unathi can now eat mice, chicks, lizards, chickens, crabs, + parrtos, and tribbles + - bugfix: fixes spawned changeling headcrab behavior + KasparoVy: + - bugfix: Incisions made at the beginning of embedded object removal surgery can + now be closed in the same procedure. + ProperPants: + - rscadd: Maint drones have magboots. + - rscdel: Removed plastic from maint drones. Literally useless for station maintenance. + - tweak: Increased starting amounts of some materials for maint drones and engi + borgs. + - experiment: Reduced the number of lines taken by Engineering cyborgs calling on + materials stacks. + - rscadd: Operating tables can be deconstructed with a wrench. + - spellcheck: Fixed and shortened description of metal sheets. + Tastyfish: + - rscadd: Bots can now be controlled by players, by opening them up and inserting + a pAI. *beep + - bugfix: MULEbots can now access the engineering destination. + - bugfix: All MULEbot destinations should now have the correct load/unload direction, + meaning the crates won't be dumped inside the flaps. + - rscadd: Diagnostic HUD's now give health and status information about bots. + - bugfix: MULEbot rampage blood tracks are now rendered correctly and handle UE + traces as appropriate. + - experiment: Bots should (hopefully) lag the game less now. + - tweak: Beepsky contains 30% more potato. + - tweak: Action progress bars are now smooth. + - tweak: Clicking a filled inventory slot's square with an open hand now clicks + the item in the slot. + - rscadd: Status displays now display the time when in Shuttle ETA mode and no shuttle + activity is happening. + - tweak: Shuttle ETA countdowns on status displays are now amber. + - rscadd: pAI's can now use the PDA chatrooms. + - rscadd: Adds treadmills to brig cells, to give the prisoners something productive + to do. + TheDZD: + - rscdel: A lot of the guns and armor in the station collision, space hotel, academy, + and wild west away missions have been removed/replaced. + - rscdel: Removes that fucking facehugger from station collision. + tigercat2000: + - rscdel: Virus2 has been removed. + - rscadd: Virus1 is back. Viva la revolution. + - rscadd: You can now have up to 20 characters. +2016-04-07: + Crazylemon64: + - bugfix: Removes an offset from the advanced virus stealth calculation, causing + viruses to be more stealthy than the sum of their symptoms. + - bugfix: Mulebots will now send announcements to relevant requests consoles on + delivery again. + FalseIncarnate: + - rscadd: Adds logic gates, for doing illogical things in a logical manner. + - rscadd: Adds buildable light switches, for all your light toggling needs. + - bugfix: Fixes a resource duplication bug with mass driver buttons. + Fethas: + - tweak: maybe makes them last longer...maybe..and fixes the event end message + Fox McCloud: + - rscadd: Maps in the slime management console to Xenobio + - tweak: Reduces Xenobio monkey box count from 4 to 2 + - bugfix: Fixes weakeyes having a negligible impact + - rscadd: Can spawn friendly animals with a new gold core reaction by injection + with water + - tweak: Hostile animal spawn increased from 3 to 5 for hostile gold cores + - tweak: Swarmers, revenants, and morphs no longer gold core spawnable + - bugfix: Fixes invisible animal spawns from gold core/life reactions + - rscadd: Adds tape to the ArtVend + - tweak: Can no longer use sentience potions on bots + - rscadd: Added in Plasma Dust reagent, acquired by grinding plasma sheets; it's + more toxic than regular plasma and generates plasma gas when spilled onto turfs. + - tweak: Slimecore reactions now require plasma dust as opposed to dispenser plasma + - rscadd: Added in new Rainbow slime; inject with plasma dust to get a random colored + slime. Acquire by having 100 mutation chance on a slime when it splits. + - rscadd: Monkey Recycler can produce different types of monkey cubes; change the + cube type by using a multitool on the recycler + - tweak: Epinephrine/plasma reagents changing mutation rate has been removed + - tweak: Mutation chance is inherited from slime generation to slime generation + as opposed to being purely random. + - tweak: 'New reactions added for red and blue extracts: red generates mutator, + which increases mutation chance, and blue generates stabilizer, which decreases + mutation chance.' + - tweak: Slime glycerol reaction removed + - tweak: Slime cells are now high capacity cells (more power than before) + - tweak: extract enhancer increases the slime core usage by 1 as oppose to setting + it to three + - tweak: slime enhancer increases slime cores by 1 as opposed to setting the core + amount to 3 + - tweak: Chill reaction lowers body temperature slightly more so it doesn't just + wear off instantly + - tweak: Reduces Xenobio plasma sheets from 8 to 3 and removes that pesky boombox + - bugfix: Processors no longer produce 1 more slime core than intended + - bugfix: Less blank/spriteless/empty foods from the silver core reaction + - tweak: Virology mix reactions now use plasma dust as opposed to plasma + - tweak: Statues can no longer move/attack people unless they're in total darkness + or all mobs viewing them are blinded + - tweak: statues are invincible to anything other than full out gibbing. + - tweak: Statues flicker lights spell range increased + - tweak: Blind spell no longer impacts silicons + - bugfix: Fixes statues being able to attack/move whenever they feel like it, regardless + of client statues + - bugfix: Fixes blind spell impacting the statue + Tastyfish: + - tweak: Beepsky is no longer a pokemon. + - tweak: pAI-controlled Bots now reliably speak human-understandable languages over + the radio. + - rscadd: More floor blood for the blood gods. (Or rather, as much as there was + supposed to be.) + tigercat2000: + - rscadd: Items in your off hand will now count towards access. +2016-04-12: + FalseIncarnate: + - tweak: Adjusting the setting of a vendor circuit board is no longer random, but + instead provides a select-able list. + - tweak: Vendor Circuit Board design moved from the Circuit Imprinter to the Autolathe, + acid requirement replaced by metal. + - bugfix: Burnt matches can no longer light cigarettes, pipes, or joints. + Fethas: + - rscdel: Nukes the cargo train code rscadd:Adds simple vehicle framework and converts + secway/janicart/snowmobiles/bikes/cars/ambulance to it rscadd:Adds space speedbike, + red and blue versions, yes you WILL need a spacesuit rscadd:Maps janicart and + secway onto metastation (but not ambulance no pareamedic garage, no i am not + mapping that) + - bugfix: You should now be able to operate on IPC eyes, SHOULD bugfix:hopefully + surgery on diona works right + Fox McCloud: + - rscadd: Adds in TraitorVamp; game mode that's essentially like TraitorChan, but + with a Vampire instead of a Changeling + - tweak: Vampires cannot use holoparasites + - tweak: Malf AI will automatically lose if it exits the station z-level + Tastyfish: + - tweak: All cats can kill mice now. + - tweak: E-N can't suffocate. + - tweak: Startup time is now shorter. + - rscdel: Removed the Station Collision away mission from rotation, due to multiple + conceptual and technical issues. +2016-04-14: + Aurorablade: + - rscdel: Removes the !!FUN!! of having headslugs gold core spawnable. + Fox McCloud: + - soundadd: Added in sounds (instead of a chat-based message) for when airlocks + are bolted/unbolted + - soundadd: Added in sound for when airlocks deny access + - tweak: cutting/pulsing wires will play a sound + - tweak: ups nuke ops game mode population requirement from 20 to 30 + - rscadd: Adds in mining drone upgrade modules to increase their health, combat + capability, or reduce their ranged cooldowns + - rscadd: Adds in mining drone "AI upgrade" a sentience potion that only works on + mining bots + - tweak: Mining bots should be less likely to shoot you when attacking hostile mobs + - tweak: Killer tomatoes actually live up to their name now and are hostile mobs + - tweak: Killer tomatoes are an actual fruit now; activate it in your hands to make + them into a mob + - tweak: Killer tomatoes are directly mutated from regular tomatoes instead of blood + tomatoes + - tweak: Increased the yield of regular tomatoes by 1 + - tweak: Tweak some stats on the killer tomato seeds + - bugfix: Fixes the blind player preference not doing anything + - rscadd: Adds portaseeder to R&D + - tweak: Scythes will conduct electricity now + - tweak: Mini hoes play a slice sound instead of bludgeon sound + - tweak: Plant analyzer properly has a description and origin tech + - tweak: Can have hulk+dwarf mutations together + - tweak: Can have heat+cold resist together + - tweak: Can only remotely view people who also have remote view + - bugfix: Fixes cold mutation not having an overlay + - bugfix: Hallucinations will no longer tick down twice as fast as they should nor + will they spawn twice as many hallucinations as they should + - bugfix: Incendiary mitochondria no longer asks who you want to cast it on (it + always is meant to be cast on yourself) + - bugfix: Fixes permanent nearsightedness even when wearing prescription glasses + KasparoVy: + - tweak: 'Head accessories now behave like facial hair: They will no longer be hidden + by clothing items that BLOCKHEADHAIR (have the BLOCKHEADHAIR flag).' + - bugfix: Wearing a piece of clothing that blocks head hair will no longer make + head accessories (facial markings/horns/antennae) invisible until an icon update + is triggered while the headwear is off. + Meisaka: + - bugfix: law manager no longer freaks out with Malf law + Tastyfish: + - tweak: The /vg/ library computer interface has been ported, giving a much better + use experience. + - rscadd: Books can now be flagged for inappropriate content. + TheDZD: + - rscdel: Removes shitty Caelcode bees. + - rscadd: Hydroponics can now manage bee colonies, bees produce honeycombs that + can be ground to obtain honey, a decent nutriment+healing chemical + - rscadd: Hydroponics can inject a queen bee with a syringe of a reagent to alter + her DNA to match that reagent, meaning all honeycombs produced will contain + that reagent in small amounts + - rscadd: Bees with reagents will attack with that reagent. It takes 5u of a reagent + to give a bee that reagent. + - rscadd: Added the ability to make Apiaries and Honey frames with wood + - rscadd: Added the ability to make Royal Bee Jelly from 10 Mutagen and 40 Honey + - rscadd: Added the ability to make more Queen Bees from Royal Bee Jelly by using + it on an existing Queen, to split her into two Queens + - rscdel: Removes some snowflakey mob behavior from bears, snakes and panthers. + - rscadd: Hudson is feeling punny. + - experiment: Hostile mob AI should now be a bit more cost-efficient. + monster860: + - rscadd: Adds area editing, link mode, and fill mode to the buildmode tool +2016-04-20: + Crazylemon64: + - rscadd: Bureaucracy crates now contain granted and denied stamps. + FalseIncarnate: + - bugfix: Anomalies will now be properly neutralized by signals that match their + code and frequency, instead of using the default frequency and their code. + FlattestGuitar: + - rscadd: Adds shot glasses. + Fox McCloud: + - tweak: Removes the ability to put a pAI into securitrons and ED-209's + - imageadd: Drinking glasses now have an in-hand sprite + - tweak: DNA injectors no longer have a delay when used on yourself + - tweak: DNA injectors no longer delete on use, but become used, much like auto-injectors + - bugfix: Fixes a bug where you can exploit the genetic scanner to get multiple + injectors + - bugfix: Fixes not being able to cancel creating an DNA injector + - tweak: remove spacesuits causing injections to the head to take longer + - bugfix: FIxes heat resist mutation not making you immune to high pressure, fire, + or high temperatures + - tweak: removes some not-well-known damage resists from cold/heat mutations + - tweak: Re-maps botany a bit to make it more bee and botanist friendly + - rscadd: Adds in Abductors Game Mode + MarsM0nd: + - tweak: Embeded object removal is now done with hemostat again + - rscadd: Borgs are able to do embeded object surgery + Tastyfish: + - tweak: Makes the server startup substantially faster. + monster860: + - bugfix: Crowbarring open a spesspod doors is no longer broken + tigercat2000: + - rscadd: -tg- thrown alerts have been added. This means you get an alert when buckled + or handcuffed or many many other things happen to you. It then gives you a tool + tip when you hover over it, and it may or may not do something when you click + it. Have fun! diff --git a/html/changelogs/AutoChangeLog-pr-4098.yml b/html/changelogs/AutoChangeLog-pr-4098.yml deleted file mode 100644 index 7374cf5beba..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4098.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Fox McCloud -delete-after: True -changes: - - tweak: "Removes the ability to put a pAI into securitrons and ED-209's" diff --git a/html/changelogs/AutoChangeLog-pr-4141.yml b/html/changelogs/AutoChangeLog-pr-4141.yml deleted file mode 100644 index 539e7ab800c..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4141.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: monster860 -delete-after: True -changes: - - bugfix: "Crowbarring open a spesspod doors is no longer broken" diff --git a/html/changelogs/AutoChangeLog-pr-4199.yml b/html/changelogs/AutoChangeLog-pr-4199.yml deleted file mode 100644 index 26299204641..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4199.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Fox McCloud -delete-after: True -changes: - - imageadd: "Drinking glasses now have an in-hand sprite" diff --git a/html/changelogs/AutoChangeLog-pr-4201.yml b/html/changelogs/AutoChangeLog-pr-4201.yml deleted file mode 100644 index bc3b71de5f8..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4201.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: Fox McCloud -delete-after: True -changes: - - tweak: "DNA injectors no longer have a delay when used on yourself" - - tweak: "DNA injectors no longer delete on use, but become used, much like auto-injectors" - - bugfix: "Fixes a bug where you can exploit the genetic scanner to get multiple injectors" - - bugfix: "Fixes not being able to cancel creating an DNA injector" diff --git a/html/changelogs/AutoChangeLog-pr-4202.yml b/html/changelogs/AutoChangeLog-pr-4202.yml deleted file mode 100644 index 5e17860d043..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4202.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Crazylemon64 -delete-after: True -changes: - - rscadd: "Bureaucracy crates now contain granted and denied stamps." diff --git a/html/changelogs/AutoChangeLog-pr-4203.yml b/html/changelogs/AutoChangeLog-pr-4203.yml deleted file mode 100644 index 472a358b7d9..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4203.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: FlattestGuitar -delete-after: True -changes: - - rscadd: "Adds shot glasses." diff --git a/html/changelogs/AutoChangeLog-pr-4207.yml b/html/changelogs/AutoChangeLog-pr-4207.yml deleted file mode 100644 index 23b0a448894..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4207.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Fox McCloud -delete-after: True -changes: - - tweak: "remove spacesuits causing injections to the head to take longer" diff --git a/html/changelogs/AutoChangeLog-pr-4208.yml b/html/changelogs/AutoChangeLog-pr-4208.yml deleted file mode 100644 index 71f857100cc..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4208.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: FalseIncarnate -delete-after: True -changes: - - bugfix: "Anomalies will now be properly neutralized by signals that match their code and frequency, instead of using the default frequency and their code." diff --git a/html/changelogs/AutoChangeLog-pr-4209.yml b/html/changelogs/AutoChangeLog-pr-4209.yml deleted file mode 100644 index 398cfaf6f1a..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4209.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: Fox McCloud -delete-after: True -changes: - - bugfix: "FIxes heat resist mutation not making you immune to high pressure, fire, or high temperatures" - - tweak: "removes some not-well-known damage resists from cold/heat mutations" diff --git a/html/changelogs/AutoChangeLog-pr-4215.yml b/html/changelogs/AutoChangeLog-pr-4215.yml deleted file mode 100644 index 7b57ddd6412..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4215.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Fox McCloud -delete-after: True -changes: - - tweak: "Re-maps botany a bit to make it more bee and botanist friendly" diff --git a/html/changelogs/AutoChangeLog-pr-4219.yml b/html/changelogs/AutoChangeLog-pr-4219.yml deleted file mode 100644 index f8023f38494..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4219.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: MarsM0nd -delete-after: True -changes: - - tweak: "Embeded object removal is now done with hemostat again" - - rscadd: "Borgs are able to do embeded object surgery" diff --git a/html/changelogs/AutoChangeLog-pr-4221.yml b/html/changelogs/AutoChangeLog-pr-4221.yml deleted file mode 100644 index 782ad4b8619..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4221.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: tigercat2000 -delete-after: True -changes: - - rscadd: "-tg- thrown alerts have been added. This means you get an alert when buckled or handcuffed or many many other things happen to you. It then gives you a tool tip when you hover over it, and it may or may not do something when you click it. Have fun!" diff --git a/html/changelogs/AutoChangeLog-pr-4223.yml b/html/changelogs/AutoChangeLog-pr-4223.yml deleted file mode 100644 index f22e657dec5..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4223.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Tastyfish -delete-after: True -changes: - - tweak: "Makes the server startup substantially faster." diff --git a/html/changelogs/AutoChangeLog-pr-4233.yml b/html/changelogs/AutoChangeLog-pr-4233.yml deleted file mode 100644 index f32871dbcaf..00000000000 --- a/html/changelogs/AutoChangeLog-pr-4233.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Fox McCloud -delete-after: True -changes: - - rscadd: "Adds in Abductors Game Mode" From e4b2f8d870af8bad8936063566c68c96e0a52b7c Mon Sep 17 00:00:00 2001 From: Meisaka Yukara Date: Thu, 21 Apr 2016 11:23:08 +0900 Subject: [PATCH 4/7] Fix the light toggles on drones and guardians. --- code/game/gamemodes/miniantags/guardian/guardian.dm | 8 +++++--- .../mob/living/silicon/robot/drone/drone_abilities.dm | 7 +++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/code/game/gamemodes/miniantags/guardian/guardian.dm b/code/game/gamemodes/miniantags/guardian/guardian.dm index b987f2eb6f6..cf99940da0f 100644 --- a/code/game/gamemodes/miniantags/guardian/guardian.dm +++ b/code/game/gamemodes/miniantags/guardian/guardian.dm @@ -29,6 +29,8 @@ var/summoned = FALSE var/cooldown = 0 var/damage_transfer = 1 //how much damage from each attack we transfer to the owner + var/light_on = 0 + var/luminosity_on = 3 var/mob/living/summoner var/range = 10 //how far from the user the spirit can be var/playstyle_string = "You are a standard Guardian. You shouldn't exist!" @@ -202,13 +204,13 @@ /mob/living/simple_animal/hostile/guardian/proc/ToggleLight() - if(!luminosity) - set_light(3) + if(!light_on) + set_light(luminosity_on) to_chat(src, "You activate your light.") else set_light(0) to_chat(src, "You deactivate your light.") - + light_on = !light_on //////////////////////////TYPES OF GUARDIANS diff --git a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm b/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm index 305c89e87cb..151fc6de51d 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm @@ -38,10 +38,9 @@ set desc = "Activate a low power omnidirectional LED. Toggled on or off." set category = "Drone" - if(luminosity) - set_light(0) - return - set_light(2) + if(lamp_intensity) + lamp_intensity = lamp_max // setting this to lamp_max will make control_headlamp shutoff the lamp + control_headlamp() //Actual picking-up event. /mob/living/silicon/robot/drone/attack_hand(mob/living/carbon/human/M as mob) From b798e7ef181e580e5c64f1825605493656fff800 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Thu, 21 Apr 2016 19:58:49 -0400 Subject: [PATCH 5/7] Fixes devamping in traitor panel --- code/datums/mind.dm | 1 + code/game/gamemodes/vampire/hud.dm | 10 +++++++++- code/game/gamemodes/vampire/vampire.dm | 15 +++++++++------ 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index b07df07d935..cf89c6bae1f 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -898,6 +898,7 @@ if(vampire) vampire.remove_vampire_powers() qdel(vampire) + vampire = null ticker.mode.update_vampire_icons_removed(src) to_chat(current, "You grow weak and lose your powers! You are no longer a vampire and are stuck in your current form!") log_admin("[key_name(usr)] has de-vampired [key_name(current)]") diff --git a/code/game/gamemodes/vampire/hud.dm b/code/game/gamemodes/vampire/hud.dm index 727ae3bdc25..d02218ca542 100644 --- a/code/game/gamemodes/vampire/hud.dm +++ b/code/game/gamemodes/vampire/hud.dm @@ -6,4 +6,12 @@ vampire_blood_display.screen_loc = "WEST:6,CENTER-1:15" vampire_blood_display.layer = 20 - mymob.client.screen += list(vampire_blood_display) \ No newline at end of file + mymob.client.screen += list(vampire_blood_display) + +/datum/hud/proc/remove_vampire_hud() + if(!vampire_blood_display) + return + + mymob.client.screen -= list(vampire_blood_display) + qdel(vampire_blood_display) + vampire_blood_display = null \ No newline at end of file diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm index 1abed5ba4dd..44f31b083ba 100644 --- a/code/game/gamemodes/vampire/vampire.dm +++ b/code/game/gamemodes/vampire/vampire.dm @@ -239,12 +239,11 @@ You are weak to holy things and starlight. Don't go into space and avoid the Cha if(!get_ability(path)) force_add_ability(path) -/datum/vampire/proc/remove_ability(path) - var/A = get_ability(path) - if(A) - powers -= A - owner.mind.spell_list.Remove(A) - qdel(A) +/datum/vampire/proc/remove_ability(ability) + if(ability && (ability in powers)) + powers -= ability + owner.mind.spell_list.Remove(ability) + qdel(ability) /mob/proc/make_vampire() if(!mind) @@ -263,6 +262,10 @@ You are weak to holy things and starlight. Don't go into space and avoid the Cha /datum/vampire/proc/remove_vampire_powers() for(var/P in powers) remove_ability(P) + if(owner.hud_used) + var/datum/hud/hud = owner.hud_used + if(hud.vampire_blood_display) + hud.remove_vampire_hud() owner.alpha = 255 /datum/vampire/proc/handle_bloodsucking(mob/living/carbon/human/H) From 1e67dc552f00d330e3e9836372d3243196e87aef Mon Sep 17 00:00:00 2001 From: ParadiseSS13-Bot Date: Thu, 21 Apr 2016 20:11:39 -0400 Subject: [PATCH 6/7] Automatic changelog generation for PR #4253 --- html/changelogs/AutoChangeLog-pr-4253.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4253.yml diff --git a/html/changelogs/AutoChangeLog-pr-4253.yml b/html/changelogs/AutoChangeLog-pr-4253.yml new file mode 100644 index 00000000000..864fbdadc67 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4253.yml @@ -0,0 +1,5 @@ +author: Meisaka +delete-after: True +changes: + - bugfix: "The light on/off function for drones works again, toggling between lowest setting and off." + - bugfix: "Guardians can toggle their lights off and on again." From 198656874d9cb79cd5f1761f6ec9ea83f68dd8dd Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Thu, 21 Apr 2016 20:07:00 -0400 Subject: [PATCH 7/7] Fixes shuttle smoothing --- code/game/objects/structures/fullwindow.dm | 16 +++++++++++----- code/game/shuttle_engines.dm | 6 ++++++ code/game/turfs/simulated/shuttle.dm | 3 ++- code/modules/shuttle/shuttle.dm | 15 ++++++++++----- 4 files changed, 29 insertions(+), 11 deletions(-) diff --git a/code/game/objects/structures/fullwindow.dm b/code/game/objects/structures/fullwindow.dm index fda64fcb740..ac6e57a4135 100644 --- a/code/game/objects/structures/fullwindow.dm +++ b/code/game/objects/structures/fullwindow.dm @@ -89,12 +89,18 @@ health = 160 reinf = 1 - New() - ..() - color = null +/obj/structure/window/full/shuttle/New() + ..() + color = null - update_icon() //icon_state has to be set manually - return +/obj/structure/window/full/shuttle/update_icon() //icon_state has to be set manually + return + +/obj/structure/window/full/shuttle/shuttleRotate(rotation) + ..() + var/matrix/M = transform + M.Turn(rotation) + transform = M /obj/structure/window/full/shuttle/dark icon = 'icons/turf/shuttle.dmi' diff --git a/code/game/shuttle_engines.dm b/code/game/shuttle_engines.dm index f0d0544bd45..820103eb2d4 100644 --- a/code/game/shuttle_engines.dm +++ b/code/game/shuttle_engines.dm @@ -2,6 +2,12 @@ name = "shuttle" icon = 'icons/turf/shuttle.dmi' +/obj/structure/shuttle/shuttleRotate(rotation) + ..() + var/matrix/M = transform + M.Turn(rotation) + transform = M + /obj/structure/shuttle/window name = "shuttle window" icon = 'icons/obj/podwindows.dmi' diff --git a/code/game/turfs/simulated/shuttle.dm b/code/game/turfs/simulated/shuttle.dm index b8d22325d7a..a169d588dd2 100644 --- a/code/game/turfs/simulated/shuttle.dm +++ b/code/game/turfs/simulated/shuttle.dm @@ -36,7 +36,8 @@ T.transform = transform //why don't shuttle walls habe smoothwall? now i gotta do rotation the dirty way -/turf/simulated/shuttle/wall/shuttleRotate(rotation) +/turf/simulated/shuttle/shuttleRotate(rotation) + ..() var/matrix/M = transform M.Turn(rotation) transform = M diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 2f7c0c06496..2a794de2ff8 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -302,10 +302,6 @@ //rotate our direction dir = angle2dir(rotation+dir2angle(dir)) - //resmooth if need be. - if(smooth) - smooth_icon(src) - //rotate the pixel offsets too. if (pixel_x || pixel_y) if (rotation < 0) @@ -316,6 +312,9 @@ pixel_x = oldPY pixel_y = (oldPX*(-1)) +/atom/proc/postDock() + if(smooth) + smooth_icon(src) //this is the main proc. It instantly moves our mobile port to stationary port S1 @@ -368,7 +367,7 @@ var/list/door_unlock_list = list() - for(var/i=1, i<=L0.len, ++i) + for(var/i in 1 to L0.len) var/turf/T0 = L0[i] if(!T0) continue @@ -443,6 +442,12 @@ T0.CalculateAdjacentTurfs() air_master.add_to_active(T0,1) + for(var/A1 in L1) + var/turf/T1 = A1 + T1.postDock() + for(var/atom/movable/M in T1) + M.postDock() + loc = S1.loc dir = S1.dir