Skip to content

Commit

Permalink
Убрал опечатки в коде
Browse files Browse the repository at this point in the history
  • Loading branch information
Drsmail committed Dec 15, 2024
1 parent 1f93785 commit 697a0f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modular_ss220/spy_spider/code/spy_spider.dm
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,18 @@
to_chat(usr, span_info("Тебе нужно подойти ближе, чтобы снять жучок с [src.declent_ru(GENITIVE)]."))
return
if(usr.stat || HAS_TRAIT(usr, TRAIT_HANDS_BLOCKED) || usr.restrained())
to_chat(usr, span_info("Тебе нужны свободные руки для этого")
to_chat(usr, span_info("Тебе нужны свободные руки для этого"))
return
if(isnull(src.spy_spider_attached))
to_chat(usr, span_info("На [src.declent_ru(PREPOSITIONAL)] нет жучка."))
return

var/obj/item/I = locate(spider_uid)
if(do_after(usr, 3 SECONDS, needhand = 1, target = src))
I.forceMove(get_turf(src))
usr.put_in_hands(I)
usr.visible_message("[usr] Что-то снимает с [src.declent_ru(GENITIVE)] !","<span class='notice'>Вы успешно снимаете жучок с [src.declent_ru(ACCUSATIVE)].</span>")
spy_spider_attached = null
I.forceMove(get_turf(src))
usr.put_in_hands(I)
usr.visible_message("[capitalize(usr.declent_ru(NOMINATIVE))] что-то снимает с [src.declent_ru(GENITIVE)] !","<span class='notice'>Вы успешно снимаете жучок с [src.declent_ru(ACCUSATIVE)].</span>")
spy_spider_attached = null


/obj/item/clothing/Topic(href, href_list)
Expand Down

0 comments on commit 697a0f4

Please sign in to comment.