Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More telepathy #8980

Merged

Conversation

LudwigVonChesterfield
Copy link
Contributor

@LudwigVonChesterfield LudwigVonChesterfield commented Mar 27, 2022

Описание изменений

Даёт две новые функции телепатам - пси-подслушку, и пси-блаблабла тем кого подслушиваешь.

  • Базовый функционал этой механики
  • Напихать вызов telepathy_hear везде что можно подслушать. АЛЬТЕРНАТИВНОЕ, СПОРНОЕ РЕШЕНИЕ: Подслушивать все to_chat

(тут ещё был пункт про подслушку звуков но его убрали читать сообщения ниже)

Почему и что этот ПР улучшит

телепатам - чтение мыслей

Чеинжлог

🆑 Luduk

  • rscadd: Телепаты на ПКМ по кукле могут начать её подслушивать, а так же передавать сообщением всем, кого подслушивают.

@TauKitty
Copy link
Contributor

Changelog status: ✔️

@TauKitty TauKitty added the Feature Новая фича label Mar 27, 2022
if(ismob(M) && (REMOTE_TALK in M.mutations))
to_chat(src, "<span class='notice'>You hear <b>[M.real_name]'s voice</b>:</span> [msg]")
else
to_chat(src, "<span class='notice'>You hear a voice that seems to echo around the room:</span> [msg]")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Да, это для Тихеон.

@LudwigVonChesterfield
Copy link
Contributor Author

@KIBORG04 от тебя ожидаю мыслей по пунктам 2 и 3 списка TO-DO

@Shootnik01
Copy link

Тихеонам - быть?

@kiVts
Copy link
Contributor

kiVts commented Mar 28, 2022

Людук втихаря облако делает
разрешаю бить алярмы

@KIBORG04
Copy link
Member

@KIBORG04 от тебя ожидаю мыслей по пунктам 2 и 3 списка TO-DO

Я хз че у вас там по лорам, но в тучатах иногда и ООЦ инфа есть. Да слушанье звука тоже не надо, это может путать игрока с "реальным" и с тем, где он.

@DarthSidiousPalpatine
Copy link
Contributor

DarthSidiousPalpatine commented Mar 30, 2022

@KIBORG04 от тебя ожидаю мыслей по пунктам 2 и 3 списка TO-DO

Я хз че у вас там по лорам, но в тучатах иногда и ООЦ инфа есть. Да слушанье звука тоже не надо, это может путать игрока с "реальным" и с тем, где он.

По мне отличная идея слушать звуки. Тем более звукам можно наложить эффекты проигрывания, чтобы игроки не путались:
image

@LudwigVonChesterfield LudwigVonChesterfield changed the title [WiP] More telepathy More telepathy Mar 30, 2022
pomogite
@LudwigVonChesterfield
Copy link
Contributor Author

Подслушка звуков телепатией

вынесу в отдельный ПР потому-что спорное

@LudwigVonChesterfield LudwigVonChesterfield changed the title More telepathy [WiP] More telepathy Apr 3, 2022
@LudwigVonChesterfield LudwigVonChesterfield changed the title [WiP] More telepathy More telepathy Apr 4, 2022
return FALSE

// Processes the message and outputs whatever the mob should actually hear
/mob/proc/process_speech(message, verb = "says", datum/language/language = null, alt_name = "",italics = 0, mob/speaker = null, used_radio, sound/speech_sound, sound_vol)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тебе вроде нужно и все другие hear_say перевести в process_speech

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

я не делаю реворк сей кода

на хуманах работает и мне хватит

/mob/proc/telepathy_hear_eavesdrop_sound(atom/source, sound)
src << sound

/mob/proc/telepathy_hear_eavesdrop(atom/source, atom/hearer, message, verb, datum/language/language)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мб не source, а speaker?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

можно наверное

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

решил оставить сурс на случай если вендоматы вдруг заговорят так чтобы их можно было подслушивать телепатически тоже

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

По мне странно прослушивать электрические динамики. Спушек нельзя же

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

прослушивается hearer, hearer слышит source, а src подслушивает hearer-а слышащего source

Comment on lines 94 to 97
/mob/proc/telepathy_say()
set name = "Project Mind"
set desc = "Make them hear what you desire."
set category = "Tycheon"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Может осилишь сделать какой-то спелл или экшен кнопку? Общаться через верб в какой-то там вкладке очень неудобно

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

а какому объекту экшен кнопка

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Объекту "общаться телепатией"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

не осилю

continue
M.telepathy_hear(src, msg)

/mob/proc/telepathy_hear(atom/source, msg)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

сурс всегда будет мобом.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

пока-что. а вдруг СЕЙ КОД РЕВОРК?!

@LudwigVonChesterfield LudwigVonChesterfield added the Test Merge Candidate ПР с этим лэйблом будет или уже находится с тест мерже label Apr 11, 2022
@LudwigVonChesterfield LudwigVonChesterfield merged commit 749f0ab into TauCetiStation:master Apr 19, 2022
TauKitty added a commit to TauCetiStation/ClassicChangelog that referenced this pull request Apr 19, 2022
LudwigVonChesterfield added a commit that referenced this pull request Apr 22, 2022
* Update atoms_religify.dm (#8971)

* removing mutantrace (#8930)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Quality Quality of Life Quality Updates (#8962)

* fix (#8951)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* properly applying mutations, giving them a cool beard (#8972)

* fixes vox, uniforms, rolling down (#8979)

* Logout spawners (#8931)

* first version

* check roles

* add borer to living spawner

* logout_reason

* logout and ghost timeouts

* better job & remove wait from robot

* refactor and add living spawner

* better self_qdel

* religion

* add roles

* podman self_spawners

* remove ghost comsig and diona spawner

* transfer LOGOUT_SWAP both characters

* fixes

* remove id's

* add comsig_died and timer check

* fix

* check for dead

* remove id's

* eof

* forgot unregister

* propper component deleting

* unrest mobs

* renaming

* woops

* better user logout catch

* comment

* signal arg and ismob

* as Киборг wish

* woops

* remove var/callback

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Start landmark renaming (#8949)

* first

* our landmarks

* useless landmark

* plane and layer (and fix order of files)

* better landmarks

* update landmarks

* fix landmarks

* fix t

* fix tabs

* add calls

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* удаляет рандомные пушки и неиспользуемые спрайты пушек (#9003)

* 1

* Update gun.dmi

* 2

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Порт гуи для изменения партиклов онлайн (#8863)

* removing rig spritesheets from unathinathi (#9034)

* Чиню мартышек, опять (#9021)

* add min

* better checks

* one min

* as you wish

* float to int?

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fix_env_path (#9019)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fix survivalcapsule (#9018)

* fix

* add min

* better checks

* outdoors

* Revert "add min"

This reverts commit 0c125b6.

* Revert "better checks"

This reverts commit d51faf9.

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Silly emote fixes (#9005)

* no emoting whil dead

* no sound when miming

* no emotes when dead

* okay

* okay Kiborg

* better lane positioning

pomogite

* Fixes #8995 (#8996)

* caps fixed

* better fix

* little refactor

* singularity doesn't eat telekinetically, TK item use consistency (#9004)

* singularity doesn't eat telekinetically, item use consistency

* don't telekinetically open doors you have access to

* actually windows are okay too

* removing attack_self_tk

* huh

* resprite retrolaser (#9037)

* resprite

* 1

* Update pit.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* dionaeaea replication (#8973)

* dionaeaea replication

* gestalt alignment

* no intent check required

* fixes

* gripper and suture (#9051)

* emotes produce sound (#9054)

* no empty qualities (#9057)

* no empty qualities

* qdeling quality not used

* Воксы-нюковцы появляются в combat boots (#9067)

## Описание изменений
Добавил замену combat boots на mangled combat boots у вокса
## Почему и что этот ПР улучшит
Вокс-нюкер раньше появлялся без ботинок
## Авторство
я
## Чеинжлог
bagfix: вокс-нюкер появляется в mangled combat boots

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>

* апдейт лестниц (#9043)

* 1

* Update ladders.dm

* Update ladders.dm

* ну пофиг на грабы от делеев хоть кайфуйте

* фикс багов агента прослушки (#9040)

* 1

* Update areas.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* remove some old shit (#9082)

* fixes war face (#9065)

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Fix event maploader (#9086)

* remove useless proc and fix bounds init

* list*

* Выпилил показывание ксенорасы из экзамайна (#9081)

* Update examine.dm

* quality

* age and quirks vision

* balance issue

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Перевод законов ИИ (#7013)

Co-authored-by: Alexander V. <volas@ya.ru>
Co-authored-by: PervertGenius <chizhovnikita2000@gmail.com>
Co-authored-by: Darth Sidious <andrgysev02@mail.ru>
Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Мерж конфликтер работает только в репозитории тау киты (#9091)

* Update conflicts.yml (#9092)

* lazy guard tweak (#9097)

* Update cult_structures.dm (#9096)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Salarian -> Salackyi (#9099)

* трупы на дереликтах больше не имеют фулаксеса (#9093)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Еще один алерт для борга (#9027)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Reafactor breath (#9061)

* first

* is_ fixes

* handle breath temp and fix

* fix alerts

* ian and mood events

* fix

* client check

* revert switch

* fix breath temp

* fixes

* remove alerts

* gasses for carbons

* move species gas types

* add handle_suffocating

* move suffocation

* fixes

* remove human handle_breath

* better smoke handling (a bit)

* better get_breath_from_internal

* stabilize_body_temperature and better breath

* better handle_suffocating

* better suiciding

* fixes

* remove

* update internals

* remove type check

* rename a bit

* fix

* add brain and monkey to alert handling

* fix a bit

* remove is_handle_smoke

* remove useless return

* Fix env mood events

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Изменение винрейта культа с 67% до 40% (#9094)

* buff

* no abuse

* fixes by review

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* point to (#9050)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fullness_lose_on_execute -> cost, fullness -> points (#9088)

* Фикс отображения разных форм детектива (#9108)

* Воксы-нюковцы появляются в combat boots

## Описание изменений
Добавил замену combat boots на mangled combat boots у вокса
## Почему и что этот ПР улучшит
Вокс-нюкер раньше появлялся без ботинок
## Авторство
я
## Чеинжлог
bagfix: вокс-нюкер появляется в mangled combat boots

* Update security.dm

* Update uniform_fat.dmi

+ форма max

* Apply suggestions from code review

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update ert.dm (#9120)

* Локализация тюрфов и ЕРТ (#6930)

Co-authored-by: Zickusable <76683966+Zickusable@users.noreply.github.com>
Co-authored-by: PervertGenius <chizhovnikita2000@gmail.com>
Co-authored-by: Alexander V. <volas@ya.ru>
Co-authored-by: TechCat <378937+TechCatOther@users.noreply.github.com>
Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Переводы стенок и багфикс (#7936)

Co-authored-by: TechCat <378937+TechCatOther@users.noreply.github.com>
Co-authored-by: Alexander V. <volas@ya.ru>

* Update TRANSLATION.md

* Update TRANSLATION.md

* Мёртвые не зреют, не гниют, Не умеют, не живут (#9118)

* инициализация

* Людук придумал штуку, я рыдал всю ночь. Ничего не понятно, не очень и интересно

* Обновка

* э

* забыл

* починено

* тадаа

* Update organ_internal.dm

* тварь работай

* забыл

* убрал лишнее

* давай дримчекер, давай, чего ты ждёшь?!

* рази-двази

* сет

* бейз

* фикс

* Update code/game/machinery/life_assist.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* до а не после

* Update life.dm

* Update life.dm

* обновка

* нижняя граница метаболизма

* Update code/modules/mob/living/carbon/human/life.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* убрал смерть органов от голода

* Update code/modules/mob/living/carbon/carbon.dm

* Update code/modules/mob/living/carbon/carbon_defines.dm

* фиксики

* Update code/modules/organs/organ_external.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_external.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/external/flesh.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fixes cargo cap, fixes washed caps after flip (#9117)

* fixes cargo cap, fixes washed caps after flip

* DRY

* hm

* Объединение Rest и Crawl (#8998)

* Rest to crawl (14)

* Update living.dm

* Crawl_patch (15)

* Crawl_patch-2 (16)

* Update pbag.dm

* Setters for Crawl (18)

* added_setter

* carbon_setter

* set_op_table

* set_pbag

* Update pbag.dm

* del_adjust_crawl

* Update xenomorph.dm

* Patch_Crawl_setters.dm (19)

* Update carbon.dm

* kalazus_change

* desc-update

* observer-update

* Bulling (20)

* Update code/modules/mob/living/silicon/robot/life.dm

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* chair_rest

* kalazus-patch__forcemove-fix (26)

* Patch_Ian (28)

* Ian_patch (29)

* Patch_resting (30)

* construct_no_grief

* simple-mob_no_gansta 

* Update constructs.dm

* Update simple_animal.dm

* monke_crawl_without_client

Co-authored-by: KIBORG04 <bossmira4@gmail.com>
Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* (s)exploit #70 (#9131)

* no

* books and length

* no

* no side effects (#9136)

* Реворк ритуала гомункулов (#9102)

* buff

* no abuse

* fixes by review

* so hard

* totally rework of rite

* pedestal rites fix

* remove rand_tail flag

* ренейминг дефайна и удаление костыля

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* sexploit #69 (#9122)

* Спавны, перформанс, чтооо??? (#9087)

* fix (#9155)

* Gestalt-aligned seeds don't overgrow (#9150)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Крупные и не очень изменения в вещичках трейторов и нюки (#9154)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Фикс дюпа тел конструктов (#9147)

* Update soulstone.dm

* soulstone ql

* Update species.dm (#9148)

* Фикс спрайтов у магазинов для стечкина (#9172)

* Update magazines.dm

* Update ammo.dmi

* Update ammo.dmi

* удаляет customitems/item_defines.dm и custom_items.dmi (#9175)

* удаляет customitems/item_defines.dm и custom_items.dmi

* 2

* 3

* 4

* Update taucetistation.dme

* Update glass.dm

* Update miscellaneous.dm

* Update code/game/objects/random/random_misc.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update glass.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Фикс разноцветных хвостов воксов (#9162)

* Багфикс открывания заваренной пожарной створки (#9158)

* fix

* fix2

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* More telepathy (#8980)

* new telepathy

* giving this to the genetics guy

* getting this game stuff to actually compile

* hearing things

* sleep

* span fixes

pomogite

* beautiful defines

* god forgive me

* mk

* a bunch of fixes

* на самом деле это кольтнерф 😔 (#9105)

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>

* nerf (#9169)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Фикс терминаторов с руками из блюспейса (#9191)

* f

* emmm

Co-authored-by: KIBORG04 <bossmira4@gmail.com>
Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>
Co-authored-by: kalazus <30507262+kalazus@users.noreply.github.com>
Co-authored-by: AndroBetel <44546836+AndroBetel@users.noreply.github.com>
Co-authored-by: Zickusable <76683966+Zickusable@users.noreply.github.com>
Co-authored-by: INwirstD <95256997+INwirstD@users.noreply.github.com>
Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: Fenriros <81817229+Fenriros@users.noreply.github.com>
Co-authored-by: Alexander V. <volas@ya.ru>
Co-authored-by: PervertGenius <chizhovnikita2000@gmail.com>
Co-authored-by: Darth Sidious <andrgysev02@mail.ru>
Co-authored-by: 4310V343k <56449763+4310V343k@users.noreply.github.com>
Co-authored-by: TechCat <378937+TechCatOther@users.noreply.github.com>
Co-authored-by: Deahaka <96499407+Deahaka@users.noreply.github.com>
Co-authored-by: simb11 <84613249+simb11@users.noreply.github.com>
LudwigVonChesterfield added a commit that referenced this pull request Apr 22, 2022
* Update atoms_religify.dm (#8971)

* removing mutantrace (#8930)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Quality Quality of Life Quality Updates (#8962)

* fix (#8951)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* properly applying mutations, giving them a cool beard (#8972)

* fixes vox, uniforms, rolling down (#8979)

* Logout spawners (#8931)

* first version

* check roles

* add borer to living spawner

* logout_reason

* logout and ghost timeouts

* better job & remove wait from robot

* refactor and add living spawner

* better self_qdel

* religion

* add roles

* podman self_spawners

* remove ghost comsig and diona spawner

* transfer LOGOUT_SWAP both characters

* fixes

* remove id's

* add comsig_died and timer check

* fix

* check for dead

* remove id's

* eof

* forgot unregister

* propper component deleting

* unrest mobs

* renaming

* woops

* better user logout catch

* comment

* signal arg and ismob

* as Киборг wish

* woops

* remove var/callback

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Start landmark renaming (#8949)

* first

* our landmarks

* useless landmark

* plane and layer (and fix order of files)

* better landmarks

* update landmarks

* fix landmarks

* fix t

* fix tabs

* add calls

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* удаляет рандомные пушки и неиспользуемые спрайты пушек (#9003)

* 1

* Update gun.dmi

* 2

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Порт гуи для изменения партиклов онлайн (#8863)

* removing rig spritesheets from unathinathi (#9034)

* Чиню мартышек, опять (#9021)

* add min

* better checks

* one min

* as you wish

* float to int?

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fix_env_path (#9019)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fix survivalcapsule (#9018)

* fix

* add min

* better checks

* outdoors

* Revert "add min"

This reverts commit 0c125b6.

* Revert "better checks"

This reverts commit d51faf9.

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Silly emote fixes (#9005)

* no emoting whil dead

* no sound when miming

* no emotes when dead

* okay

* okay Kiborg

* better lane positioning

pomogite

* Fixes #8995 (#8996)

* caps fixed

* better fix

* little refactor

* singularity doesn't eat telekinetically, TK item use consistency (#9004)

* singularity doesn't eat telekinetically, item use consistency

* don't telekinetically open doors you have access to

* actually windows are okay too

* removing attack_self_tk

* huh

* resprite retrolaser (#9037)

* resprite

* 1

* Update pit.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* dionaeaea replication (#8973)

* dionaeaea replication

* gestalt alignment

* no intent check required

* fixes

* gripper and suture (#9051)

* emotes produce sound (#9054)

* no empty qualities (#9057)

* no empty qualities

* qdeling quality not used

* Воксы-нюковцы появляются в combat boots (#9067)

## Описание изменений
Добавил замену combat boots на mangled combat boots у вокса
## Почему и что этот ПР улучшит
Вокс-нюкер раньше появлялся без ботинок
## Авторство
я
## Чеинжлог
bagfix: вокс-нюкер появляется в mangled combat boots

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>

* апдейт лестниц (#9043)

* 1

* Update ladders.dm

* Update ladders.dm

* ну пофиг на грабы от делеев хоть кайфуйте

* фикс багов агента прослушки (#9040)

* 1

* Update areas.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* remove some old shit (#9082)

* fixes war face (#9065)

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Fix event maploader (#9086)

* remove useless proc and fix bounds init

* list*

* Выпилил показывание ксенорасы из экзамайна (#9081)

* Update examine.dm

* quality

* age and quirks vision

* balance issue

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Перевод законов ИИ (#7013)

Co-authored-by: Alexander V. <volas@ya.ru>
Co-authored-by: PervertGenius <chizhovnikita2000@gmail.com>
Co-authored-by: Darth Sidious <andrgysev02@mail.ru>
Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Мерж конфликтер работает только в репозитории тау киты (#9091)

* Update conflicts.yml (#9092)

* lazy guard tweak (#9097)

* Update cult_structures.dm (#9096)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Salarian -> Salackyi (#9099)

* трупы на дереликтах больше не имеют фулаксеса (#9093)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Еще один алерт для борга (#9027)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Reafactor breath (#9061)

* first

* is_ fixes

* handle breath temp and fix

* fix alerts

* ian and mood events

* fix

* client check

* revert switch

* fix breath temp

* fixes

* remove alerts

* gasses for carbons

* move species gas types

* add handle_suffocating

* move suffocation

* fixes

* remove human handle_breath

* better smoke handling (a bit)

* better get_breath_from_internal

* stabilize_body_temperature and better breath

* better handle_suffocating

* better suiciding

* fixes

* remove

* update internals

* remove type check

* rename a bit

* fix

* add brain and monkey to alert handling

* fix a bit

* remove is_handle_smoke

* remove useless return

* Fix env mood events

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Изменение винрейта культа с 67% до 40% (#9094)

* buff

* no abuse

* fixes by review

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* point to (#9050)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fullness_lose_on_execute -> cost, fullness -> points (#9088)

* Фикс отображения разных форм детектива (#9108)

* Воксы-нюковцы появляются в combat boots

## Описание изменений
Добавил замену combat boots на mangled combat boots у вокса
## Почему и что этот ПР улучшит
Вокс-нюкер раньше появлялся без ботинок
## Авторство
я
## Чеинжлог
bagfix: вокс-нюкер появляется в mangled combat boots

* Update security.dm

* Update uniform_fat.dmi

+ форма max

* Apply suggestions from code review

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update ert.dm (#9120)

* Локализация тюрфов и ЕРТ (#6930)

Co-authored-by: Zickusable <76683966+Zickusable@users.noreply.github.com>
Co-authored-by: PervertGenius <chizhovnikita2000@gmail.com>
Co-authored-by: Alexander V. <volas@ya.ru>
Co-authored-by: TechCat <378937+TechCatOther@users.noreply.github.com>
Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Переводы стенок и багфикс (#7936)

Co-authored-by: TechCat <378937+TechCatOther@users.noreply.github.com>
Co-authored-by: Alexander V. <volas@ya.ru>

* Update TRANSLATION.md

* Update TRANSLATION.md

* Мёртвые не зреют, не гниют, Не умеют, не живут (#9118)

* инициализация

* Людук придумал штуку, я рыдал всю ночь. Ничего не понятно, не очень и интересно

* Обновка

* э

* забыл

* починено

* тадаа

* Update organ_internal.dm

* тварь работай

* забыл

* убрал лишнее

* давай дримчекер, давай, чего ты ждёшь?!

* рази-двази

* сет

* бейз

* фикс

* Update code/game/machinery/life_assist.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* до а не после

* Update life.dm

* Update life.dm

* обновка

* нижняя граница метаболизма

* Update code/modules/mob/living/carbon/human/life.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_internal.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* убрал смерть органов от голода

* Update code/modules/mob/living/carbon/carbon.dm

* Update code/modules/mob/living/carbon/carbon_defines.dm

* фиксики

* Update code/modules/organs/organ_external.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/organ_external.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update code/modules/organs/external/flesh.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* fixes cargo cap, fixes washed caps after flip (#9117)

* fixes cargo cap, fixes washed caps after flip

* DRY

* hm

* Объединение Rest и Crawl (#8998)

* Rest to crawl (14)

* Update living.dm

* Crawl_patch (15)

* Crawl_patch-2 (16)

* Update pbag.dm

* Setters for Crawl (18)

* added_setter

* carbon_setter

* set_op_table

* set_pbag

* Update pbag.dm

* del_adjust_crawl

* Update xenomorph.dm

* Patch_Crawl_setters.dm (19)

* Update carbon.dm

* kalazus_change

* desc-update

* observer-update

* Bulling (20)

* Update code/modules/mob/living/silicon/robot/life.dm

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* chair_rest

* kalazus-patch__forcemove-fix (26)

* Patch_Ian (28)

* Ian_patch (29)

* Patch_resting (30)

* construct_no_grief

* simple-mob_no_gansta 

* Update constructs.dm

* Update simple_animal.dm

* monke_crawl_without_client

Co-authored-by: KIBORG04 <bossmira4@gmail.com>
Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* (s)exploit #70 (#9131)

* no

* books and length

* no

* no side effects (#9136)

* Реворк ритуала гомункулов (#9102)

* buff

* no abuse

* fixes by review

* so hard

* totally rework of rite

* pedestal rites fix

* remove rand_tail flag

* ренейминг дефайна и удаление костыля

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* sexploit #69 (#9122)

* Спавны, перформанс, чтооо??? (#9087)

* fix (#9155)

* Gestalt-aligned seeds don't overgrow (#9150)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Крупные и не очень изменения в вещичках трейторов и нюки (#9154)

Co-authored-by: KIBORG04 <bossmira4@gmail.com>

* Фикс дюпа тел конструктов (#9147)

* Update soulstone.dm

* soulstone ql

* Update species.dm (#9148)

* Фикс спрайтов у магазинов для стечкина (#9172)

* Update magazines.dm

* Update ammo.dmi

* Update ammo.dmi

* удаляет customitems/item_defines.dm и custom_items.dmi (#9175)

* удаляет customitems/item_defines.dm и custom_items.dmi

* 2

* 3

* 4

* Update taucetistation.dme

* Update glass.dm

* Update miscellaneous.dm

* Update code/game/objects/random/random_misc.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Update glass.dm

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Фикс разноцветных хвостов воксов (#9162)

* Багфикс открывания заваренной пожарной створки (#9158)

* fix

* fix2

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* More telepathy (#8980)

* new telepathy

* giving this to the genetics guy

* getting this game stuff to actually compile

* hearing things

* sleep

* span fixes

pomogite

* beautiful defines

* god forgive me

* mk

* a bunch of fixes

* на самом деле это кольтнерф 😔 (#9105)

Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>

* nerf (#9169)

Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>

* Фикс терминаторов с руками из блюспейса (#9191)

* f

* emmm

* респрайт обопа (#9184)

* herewego

* desc

* Update miscellaneous.dm

* Update boots.dm

* Update helmet.dm

* Delete IDPDstuff.dmi

* smol

* Update armor.dm

* Update outfit.dm

Co-authored-by: KIBORG04 <bossmira4@gmail.com>
Co-authored-by: LudwigVonChesterfield <17705613+LudwigVonChesterfield@users.noreply.github.com>
Co-authored-by: kalazus <30507262+kalazus@users.noreply.github.com>
Co-authored-by: AndroBetel <44546836+AndroBetel@users.noreply.github.com>
Co-authored-by: Zickusable <76683966+Zickusable@users.noreply.github.com>
Co-authored-by: INwirstD <95256997+INwirstD@users.noreply.github.com>
Co-authored-by: Sakuya-Izayoi <30875884+Sakuya-Izayoi@users.noreply.github.com>
Co-authored-by: Fenriros <81817229+Fenriros@users.noreply.github.com>
Co-authored-by: Alexander V. <volas@ya.ru>
Co-authored-by: PervertGenius <chizhovnikita2000@gmail.com>
Co-authored-by: Darth Sidious <andrgysev02@mail.ru>
Co-authored-by: 4310V343k <56449763+4310V343k@users.noreply.github.com>
Co-authored-by: TechCat <378937+TechCatOther@users.noreply.github.com>
Co-authored-by: Deahaka <96499407+Deahaka@users.noreply.github.com>
Co-authored-by: simb11 <84613249+simb11@users.noreply.github.com>
@LudwigVonChesterfield LudwigVonChesterfield deleted the more_telepathy branch November 29, 2022 15:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature Новая фича Test Merge Candidate ПР с этим лэйблом будет или уже находится с тест мерже
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants