forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Changelog :cl: ParadiseSS13 add: Бамбук: семена доступны в вендоре семян ботаники. Из него можно сделать коврики, стулья и скамейки add: Punji sticks: смертельная ловушка способная пробить обувь, делается из бамбука add: Blowgun: самодельный шприцемёт который истощает своего пользователя если слишком много использовать, делается из бабмука add: Бамбуковое копьё: как это ни странно, делается из бамбука add: Гранаты теперь разлетаются на физическую шрапнель когда взрываются, так же оставляют шрапнель на полу add: В Орбит добавлена возможность смотреть должность персонажа, при наведении на него. Доступно только при включённом AntagHUD add: Добавлен бандл Оцелота в выборе синди-бандла add: Гипоспрей можно переименовать с помощью карандаша и т.п. tweak: Dissonant Shriek стоит в 2.5 раза дороже, если выпал трейт станции Cybernetic Revolution tweak: Рецепт рёбрышек барбекю, перестал требовать metal rod tweak: Картонный шлем больше не защищает от лицехватов tweak: Клинботы могут убирать стекло tweak: Сигареты теперь можно измельчать tweak: Шкафчики в обезьянниках теперь полностью пустые tweak: Стак статуса Confusion (кружочек над головой) от перцовки больше не бесконечный, Максимум 20 секунд tweak: Временные статус-эффекты теперь имеют максимум в 5 минут imageadd: Слаймы обзавелись новыми спрайтами soundadd: Добавлены новые звуки анонсов при: Гамма шаттле и замыкании АПЦ fix: RPD больше не бьёт транзитные трубы когда пытается их повернуть fix: Детали транзитной трубы будут установлены в правильном направлении, исходя из их неустановленной ориентации fix: Все части транзитной трубы, кроме станционных, являются проходимыми. fix: Переподключение конечностей КПБ больше не требует отвёртку fix: Замедлена анимация ЕМПшнутой барной вывески fix: Кулдаун спела мага Blind увеличен с 10 до 15 секунд, как и должно было быть fix: Скорость метаболизма Пиво2 увеличена на 0.1u fix: Ксеноморфы снова могут строить свои структуры fix: Фулл-тайл плазма окно, больше не пропускает тепло fix: Экшн кнопки реже вызывают проблемы при удалении fix: Кудзу больше не мутирует при 0 потенции fix: Спелы снова показывают прогресс перезарядки всех спелов fix: Поднос сервисных боргов, больше не выкидывает вместе с содержимым количество предметов в стаке из инвентаря (Цифра справа снизу) fix: Нажатие СКМ по экшн-кнопкам снова отличается от ЛКМ fix: TGUI-say больше не кикает вас за слишком длинное сообщение fix: Удары по отсутствующей конечности, будут бить в случайную присутствующую конечность, вместо промаха fix: Если вы дадите кому-то отравленную бумагу, яд на ней будет передан вместе с ней fix: Дилей теперь работает корректно если его прожать ДО полного запуска сервера fix: Админский верб Start Now, теперь показывает алёрт, если его прожать во время дилея, вместо простого ничего /:cl:
- Loading branch information
Showing
212 changed files
with
1,492 additions
and
918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "byond", | ||
"request": "launch", | ||
"name": "Build & DS Debug", | ||
"preLaunchTask": "dm: build - ${command:CurrentDME}", | ||
"dmb": "${workspaceFolder}/${command:CurrentDMB}" | ||
}, | ||
{ | ||
"type": "byond", | ||
"request": "launch", | ||
"name": "DS Debug", | ||
"dmb": "${workspaceFolder}/${command:CurrentDMB}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,53 @@ | ||
{ | ||
"gitlens.advanced.blame.customArguments": [ | ||
"--ignore-revs-file", | ||
"${workspaceRoot}/.git-blame-ignore-revs" | ||
], | ||
// ESLint settings: | ||
"eslint.workingDirectories": ["tgui/"], | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"eslint.nodePath": "tgui/.yarn/sdks", | ||
"prettier.configPath": "tgui/.prettierrc.yml", | ||
"prettier.prettierPath": "tgui/.yarn/sdks/prettier/index.cjs", | ||
"typescript.tsdk": "tgui/.yarn/sdks/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"eslint.format.enable": true, | ||
"eslint.rules.customizations": [ | ||
// We really want to fail the CI builds on styling errors, | ||
// but it's better to show them as yellow squigglies in IDE | ||
// and thus differentiate from the red typescript ones which | ||
// are actually hard errors. | ||
{ "rule": "*", "severity": "warn" } | ||
], | ||
"eslint.format.enable": true, | ||
|
||
"[javascript]": { | ||
"editor.rulers": [80] | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[javascriptreact]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescript]": { | ||
"editor.rulers": [80] | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[scss]": { | ||
"editor.rulers": [80] | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"editor.formatOnSave": true | ||
|
||
"editor.formatOnSave": true, | ||
"gitlens.advanced.blame.customArguments": [ | ||
"--ignore-revs-file", | ||
"${workspaceRoot}/.git-blame-ignore-revs" | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.