Skip to content

Commit

Permalink
Merge pull request #90 from SPLURT-Station/upstream-updates
Browse files Browse the repository at this point in the history
[UPSTREAM UPDATE] 14.1.2025
  • Loading branch information
MosleyTheMalO authored Jan 15, 2025
2 parents 04cb2a4 + 6f1d32c commit 298a7f2
Show file tree
Hide file tree
Showing 13 changed files with 48 additions and 9 deletions.
1 change: 1 addition & 0 deletions code/_globalvars/lists/ambience.dm
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ GLOBAL_LIST_INIT(icemoon_ambience,list(
'sound/ambience/icemoon/ambiicesting3.ogg',
'sound/ambience/icemoon/ambiicesting4.ogg',
'sound/ambience/icemoon/ambiicesting5.ogg',
'modular_zubbers/sound/ambiance/bangle-freezer.ogg', // Bubber Edit - Credit: Bangle
))

GLOBAL_LIST_INIT(medical_ambience,list(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ GLOBAL_LIST_INIT(heretic_start_knowledge, initialize_starting_knowledge())
return FALSE
if(!new_heart.useable)
return FALSE
if(new_heart.organ_flags & (ORGAN_ROBOTIC|ORGAN_FAILING))
if(new_heart.organ_flags & (ORGAN_FAILING)) //BUBBERSTATION EDIT
return FALSE

return TRUE
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/dead/new_player/login.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

//SKYRAT EDIT ADDITION
var/soft_player_cap = CONFIG_GET(number/player_soft_cap)
if(TGS_CLIENT_COUNT >= soft_player_cap)
if(soft_player_cap && TGS_CLIENT_COUNT >= soft_player_cap)
INVOKE_ASYNC(src, PROC_REF(connect_to_second_server))
//SKYRAT EDIT END

Expand Down
12 changes: 12 additions & 0 deletions html/changelogs/archive/2025-01.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,3 +200,15 @@
- bugfix: Subtler will now filter out clientless mobs
prototypemeat:
- balance: Buffed Razor Claws and their upgraded variants, happy killing
2025-01-14:
Arturlang:
- rscdel: no more wizard armor in wizdrobe, sorry,
KazooBard:
- qol: Heretic Synths also start with a living heart
MosleyTheMalO:
- bugfix: makes the softcap config disableable again
StrangeWeirdKitten, Bangle:
- rscadd: Adds another ambiance track to Icebox called Freezer, by Bangle.
Tonadas:
- rscadd: Added new Galactic Federation Jacket
- rscadd: Added Galactic Federation Jacket to character creator.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/contraband/korpstech, 32)
icon = 'modular_skyrat/master_files/icons/donator/obj/clothing/uniform.dmi'
icon_state = "hosaltred"
worn_icon = 'modular_skyrat/master_files/icons/donator/mob/clothing/uniform.dmi'
worn_icon_digi = null
worn_icon_digi = 'modular_skyrat/master_files/icons/donator/mob/clothing/uniform_digi.dmi'

/obj/item/clothing/glasses/hud/security/sunglasses/gars/giga/roselia
name = "red-tinted giga HUD gar glasses"
Expand Down
30 changes: 25 additions & 5 deletions modular_zubbers/code/modules/clothing/suits/jacket.dm
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
greyscale_config = /datum/greyscale_config/henchmen
greyscale_config_worn = /datum/greyscale_config/henchmen/worn
flags_1 = IS_PLAYER_COLORABLE_1

/obj/item/clothing/suit/jacket/henchmen_coat/Initialize(mapload)
. = ..()
AddComponent(/datum/component/toggle_icon)
Expand Down Expand Up @@ -129,13 +130,21 @@
/obj/item/clothing/suit/jacket/tailcoat/syndicate/fake
armor_type = /datum/armor/none

/obj/item/clothing/suit/wizrobe/magician //Not really a robe but it's MAGIC
/obj/item/clothing/suit/jacket/tailcoat/magician
name = "magician's tailcoat"
desc = "A magnificent, gold-lined tailcoat that seems to radiate power."
worn_icon = 'modular_zubbers/icons/mob/clothing/suits/jacket.dmi'
worn_icon_digi = 'modular_zubbers/icons/mob/clothing/suits/jacket_digi.dmi'
icon = 'modular_zubbers/icons/obj/clothing/suits/jacket.dmi'
desc = "A magnificent, gold-lined tailcoat."
icon_state = "tailcoat_wiz"
greyscale_config = null
greyscale_config_worn = null
greyscale_colors = null

/obj/item/clothing/suit/wizrobe/magician //Not really a robe but it's MAGIC
name = /obj/item/clothing/suit/jacket/tailcoat/magician::name
desc = "A magnificent, gold-lined tailcoat that seems to radiate power."
worn_icon = /obj/item/clothing/suit/jacket/tailcoat/magician::worn_icon
worn_icon_digi = /obj/item/clothing/suit/jacket/tailcoat/magician::worn_icon_digi
icon = /obj/item/clothing/suit/jacket/tailcoat/magician::icon
icon_state = /obj/item/clothing/suit/jacket/tailcoat/magician::icon_state
inhand_icon_state = null
flags_inv = null

Expand Down Expand Up @@ -621,3 +630,14 @@
/obj/item/clothing/suit/toggle/jacket/sec/medical
name = "medical praetorian jacket"
desc = "This stylish jacket is perfect for those impromptu fashion shows on the scene of an emergency. Now, you can be the brightest beacon of style while administering medical treatment! Because, after all, why save lives if you can't look fabulous while doing it?"

//Lore Jackets

//Galactic Federation SPRITES BY Tonadas of Bubberstation
/obj/item/clothing/suit/jacket/galfed
name = "Galactic Federation jacket"
desc = "A jacket worn by members of the Galactic Federation. It's a bit worn, but it's still in good condition."
icon = 'modular_zubbers/icons/obj/clothing/jacket.dmi'
worn_icon = 'modular_zubbers/icons/mob/clothing/suits/jacket.dmi'
icon_state = "galfed"
body_parts_covered = CHEST|ARMS|GROIN
6 changes: 6 additions & 0 deletions modular_zubbers/code/modules/loadout/categories/suit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@
/datum/loadout_item/suit/flight //Donor item for ironknight060
name = "MA-1 flight jacket"
item_path = /obj/item/clothing/suit/jacket/flight

// Lore Jackets

/datum/loadout_item/suit/galfed_jacket
name = "Galactic Federation Jacket"
item_path = /obj/item/clothing/suit/jacket/galfed
2 changes: 1 addition & 1 deletion modular_zubbers/code/modules/vending/wardrobe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
/obj/item/clothing/suit/jacket/tailcoat = 6,
/obj/item/clothing/neck/tie/bunnytie/magician = 6,
/obj/item/clothing/under/costume/playbunny/magician = 6,
/obj/item/clothing/suit/wizrobe/magician = 6,
/obj/item/clothing/suit/jacket/tailcoat/magician = 6,
/obj/item/clothing/head/playbunnyears/british = 6,
/obj/item/clothing/neck/tie/bunnytie/blue = 6,
/obj/item/clothing/under/costume/playbunny/british = 6,
Expand Down
Binary file modified modular_zubbers/icons/mob/clothing/suits/jacket.dmi
Binary file not shown.
Binary file modified modular_zubbers/icons/obj/clothing/jacket.dmi
Binary file not shown.
Binary file modified modular_zubbers/icons/obj/clothing/suits/jacket.dmi
Binary file not shown.
Binary file added modular_zubbers/sound/ambiance/bangle-freezer.ogg
Binary file not shown.

0 comments on commit 298a7f2

Please sign in to comment.