Uranium hf (#9629)

This commit is contained in:
Kashargul
2024-12-13 23:56:32 +01:00
committed by GitHub
parent a967fb3861
commit 6db5a51dfc
2 changed files with 8 additions and 2 deletions

View File

@@ -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

View File

@@ -775,10 +775,16 @@
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
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