From 6db5a51dfce1339f5dfe8b95fa9d34abc918ef1b Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Fri, 13 Dec 2024 23:56:32 +0100 Subject: [PATCH] Uranium hf (#9629) --- code/modules/mining/ore_datum.dm | 2 +- code/modules/vore/eating/belly_import.dm | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/code/modules/mining/ore_datum.dm b/code/modules/mining/ore_datum.dm index ca9a5cf58f..7870fc4f0a 100644 --- a/code/modules/mining/ore_datum.dm +++ b/code/modules/mining/ore_datum.dm @@ -23,7 +23,7 @@ display_name = name /ore/uranium - name = ORE_LEAD + name = ORE_URANIUM display_name = "pitchblende" smelts_to = MAT_URANIUM result_amount = 5 diff --git a/code/modules/vore/eating/belly_import.dm b/code/modules/vore/eating/belly_import.dm index 75d87881a4..742dc98b0b 100644 --- a/code/modules/vore/eating/belly_import.dm +++ b/code/modules/vore/eating/belly_import.dm @@ -775,11 +775,17 @@ if(istext(belly_data["belly_fullscreen_color2"])) var/new_belly_fullscreen_color2 = sanitize_hexcolor(belly_data["belly_fullscreen_color2"],new_belly.belly_fullscreen_color2) new_belly.belly_fullscreen_color2 = new_belly_fullscreen_color2 + else if(istext(belly_data["belly_fullscreen_color_secondary"])) // Inter server support between virgo and chomp! + var/new_belly_fullscreen_color2 = sanitize_hexcolor(belly_data["belly_fullscreen_color_secondary"],new_belly.belly_fullscreen_color2) + new_belly.belly_fullscreen_color2 = new_belly_fullscreen_color2 if(istext(belly_data["belly_fullscreen_color3"])) var/new_belly_fullscreen_color3 = sanitize_hexcolor(belly_data["belly_fullscreen_color3"],new_belly.belly_fullscreen_color3) new_belly.belly_fullscreen_color3 = new_belly_fullscreen_color3 - //CHOMPEdit End + else if(istext(belly_data["belly_fullscreen_color_trinary"])) // Inter server support between virgo and chomp! + var/new_belly_fullscreen_color3 = sanitize_hexcolor(belly_data["belly_fullscreen_color_trinary"],new_belly.belly_fullscreen_color3) + new_belly.belly_fullscreen_color3 = new_belly_fullscreen_color3 + // CHOMPEdit End // Not implemented on virgo -> CHOMPEnable Start if(istext(belly_data["belly_fullscreen_color4"]))