Skip to content

Commit

Permalink
упс.
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoonij authored Dec 16, 2024
1 parent 502468c commit c64d9a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/items/weapons/dna_upgrader.dm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
return FALSE

if(used)
balloon_alert(human, "Инъектор пуст!")
balloon_alert(human, "инъектор пуст!")
return FALSE

if(HAS_TRAIT(human, TRAIT_NO_DNA))
Expand Down
6 changes: 3 additions & 3 deletions code/modules/station_goals/dna_vault.dm
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ GLOBAL_LIST_INIT(non_simple_animals, typecacheof(list(/mob/living/carbon/human/l

/obj/machinery/dna_vault/New()
// TODO: Replace this, bsa and gravgen with some big machinery datum
LAZYINITLIST(occupied)
var/list/occupied

for(var/direct in list(EAST, WEST, SOUTHEAST, SOUTHWEST))
LAZYADD(occupied, get_step(src, direct))
Expand Down Expand Up @@ -225,7 +225,7 @@ GLOBAL_LIST_INIT(non_simple_animals, typecacheof(list(/mob/living/carbon/human/l
if(LAZYIN(power_lottery, user))
return

LAZYINITLIST(genes)
var/list/genes

for(var/datum/vault_gene/gene as anything in subtypesof(/datum/vault_gene))
if(!initial(gene.name))
Expand All @@ -236,7 +236,7 @@ GLOBAL_LIST_INIT(non_simple_animals, typecacheof(list(/mob/living/carbon/human/l
if(!LAZYLEN(genes))
CRASH("[src] rolled 0 genes.")

LAZYINITLIST(picked_genes)
var/list/picked_genes

LAZYADD(picked_genes, pick_n_take(genes))
LAZYADD(picked_genes, pick_n_take(genes))
Expand Down

0 comments on commit c64d9a0

Please sign in to comment.