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"]))