Skip to content

Commit

Permalink
dsfd
Browse files Browse the repository at this point in the history
  • Loading branch information
Anorak2024 committed Oct 14, 2024
1 parent 157f4b7 commit b6fdb94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/datums/spell.dm
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ GLOBAL_LIST_INIT(spells, typesof(/obj/effect/proc_holder/spell))
/obj/effect/proc_holder/spell/proc/try_perform(list/targets, mob/user)
SHOULD_NOT_OVERRIDE(TRUE)
if(!length(targets))
to_chat(user, span_warning("Подходящих целей не найдено."))
to_chat(user, span_warning("No suitable target found."))
return FALSE

if(should_remove_click_intercept(user)) // returns TRUE by default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,5 @@
/obj/item/storage/box/syndie_kit/spy_bugs_kit/populate_contents()
var/network = "MI13_[rand(111111, 999999)]"
new /obj/item/camera_bug/spy_monitor(src, list(network))
new /obj/item/spy_bug(src, list(network), "1")
new /obj/item/spy_bug(src, list(network), "2")
new /obj/item/spy_bug(src, list(network), "3")
new /obj/item/spy_bug(src, list(network), "4")
new /obj/item/spy_bug(src, list(network), "5")
for(var/i = 1; i <= 5; ++i)
new /obj/item/spy_bug(src, list(network), "[i]")

0 comments on commit b6fdb94

Please sign in to comment.