Skip to content

Commit

Permalink
Anomaly hotfix (#2853)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmShegars authored Nov 10, 2024
1 parent 1ef0b7f commit fd86318
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions mods/anomaly/code/anomaly_controller.dm
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@ PROCESSING_SUBSYSTEM_DEF(anom)
anomaly_text += "<br>Аномалии были взведены [anomalies_activated_times] Раз. В целом, игроки подверглись влиянию аномалий [humanoids_effected_by_anomaly] раз, а [humanoids_gibbed_by_anomaly] игроков были гибнуты. [simplemobs_effected_by_anomaly] симплмобов подверглись влиянию аномалий и [simplemobs_gibbed_by_anomaly] было гибнуто."
//Раненные, умершие, гибнутые
if(last_attacked_message)
anomaly_text += "<br><b>[last_attacked_message].</b>"
anomaly_text += "<br>[last_attacked_message]."
else
anomaly_text += "<br><b>Никто не пострадал от аномалий.</b>"
anomaly_text += "<br>Никто не пострадал от аномалий."

if(gibbed_last_message)
anomaly_text += "<br><b>[gibbed_last_message].</b>"
anomaly_text += "<br>[gibbed_last_message]."
else
anomaly_text += "<br><b>Никого не порвало от аномалии.</b>"
anomaly_text += "<br>Никого не порвало от аномалии."
return anomaly_text

/datum/controller/subsystem/processing/anom/proc/add_last_attack(mob/living/user, attack_name)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
break
var/planet_z = get_z(any_turf)
var/datum/event/change_z_skybox = new /datum/event/change_z_skybox(new /datum/event_meta(EVENT_LEVEL_MAJOR))
change_z_skybox.affecting_z += planet_z
change_z_skybox.affecting_z = list(planet_z)
change_z_skybox.setup('mods/anomaly/icons/planet_backgrounds.dmi', "flying")
SSskybox.generate_skybox(planet_z)

Expand Down

0 comments on commit fd86318

Please sign in to comment.