Skip to content

Commit

Permalink
Возвращение спавна планет (#3033)
Browse files Browse the repository at this point in the history
Co-authored-by: UEDCommander <[email protected]>
  • Loading branch information
AmShegars and UEDCommander authored Jan 1, 2025
1 parent 64950df commit 443de79
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion code/modules/mob/living/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,16 @@ var/global/list/channel_to_radio_key = new
eavesdroping_obj -= listening_obj
for(var/mob/M in eavesdroping)
if(M)
M.hear_say(stars(message), verb, speaking, alt_name, italics, src, speech_sound, sound_vol)
//[SIERRA-ADD] - RESOMI
var/mob/living/carbon/human/H
var/temp
if(ishuman(M))
H = M
temp = (H.get_species() == SPECIES_RESOMI ? message : stars(message))
else
temp = stars(message)
M.hear_say(temp, verb, speaking, alt_name, italics, src, speech_sound, sound_vol)
//[/SIERRA-ADD]
if(M.client)
speech_bubble_recipients |= M.client

Expand Down
6 changes: 3 additions & 3 deletions mods/anomaly/code/spawn_anomalies_protocol/spawn_on_planet.dm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/datum/map/build_exoplanets()
//Игра заспавнит 1 обычную планету и 1 аномальную
var/list/anomaly_planets_list = list(
// /obj/overmap/visitable/sector/exoplanet/ice,
// /obj/overmap/visitable/sector/exoplanet/volcanic,
// /obj/overmap/visitable/sector/exoplanet/flying
/obj/overmap/visitable/sector/exoplanet/ice,
/obj/overmap/visitable/sector/exoplanet/volcanic,
/obj/overmap/visitable/sector/exoplanet/flying
)
var/list/all_planets_list = subtypesof(/obj/overmap/visitable/sector/exoplanet)
//Я не придумал как обьяснять игре какая планета обычная, а какая аномальная без
Expand Down

0 comments on commit 443de79

Please sign in to comment.