Skip to content

Commit

Permalink
Merge Upstream 07.04.2024 (#1161)
Browse files Browse the repository at this point in the history
## 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
Legendaxe authored Apr 7, 2024
2 parents 5ce39e3 + 10a8d7f commit c6343df
Show file tree
Hide file tree
Showing 212 changed files with 1,492 additions and 918 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ stddef.dm
*.vscode/*
!/.vscode/extensions.json
!/.vscode/tasks.json
!/.vscode/launch.json

# ignore DMI tool build cache
/tools/dmitool/bin/
Expand Down
18 changes: 18 additions & 0 deletions .vscode/launch.json
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}"
}
]
}
44 changes: 31 additions & 13 deletions .vscode/settings.json
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"
],
}
82 changes: 43 additions & 39 deletions _maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@
/obj/effect/baseturf_helper,
/turf/simulated/floor/plating,
/area/ruin/powered)
"P" = (
/obj/effect/mapping_helpers/no_lava,
/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"X" = (
/obj/item/flashlight/lantern,
/turf/simulated/floor/plating,
Expand All @@ -189,14 +193,14 @@ a
a
a
a
s
s
s
s
s
s
s
s
P
P
P
a
a
a
a
a
"}
(2,1,1) = {"
a
Expand All @@ -209,12 +213,12 @@ a
a
a
a
P
P
s
s
s
s
s
s
a
a
a
"}
(3,1,1) = {"
a
Expand All @@ -227,12 +231,12 @@ a
a
a
a
P
P
P
s
s
s
s
s
s
a
a
"}
(4,1,1) = {"
a
Expand All @@ -246,11 +250,11 @@ a
a
a
a
P
P
P
s
s
s
s
s
a
"}
(5,1,1) = {"
a
Expand All @@ -266,9 +270,9 @@ t
t
t
t
s
s
s
P
P
a
"}
(6,1,1) = {"
a
Expand All @@ -284,8 +288,8 @@ v
x
B
t
s
s
P
P
s
"}
(7,1,1) = {"
Expand All @@ -302,9 +306,9 @@ w
y
y
D
s
s
s
P
P
a
"}
(8,1,1) = {"
a
Expand All @@ -320,9 +324,9 @@ o
z
C
t
s
s
s
P
P
a
"}
(9,1,1) = {"
b
Expand All @@ -338,9 +342,9 @@ o
t
t
t
P
s
s
s
a
"}
(10,1,1) = {"
b
Expand All @@ -356,8 +360,8 @@ o
A
b
a
s
s
P
P
s
"}
(11,1,1) = {"
Expand All @@ -375,7 +379,7 @@ c
b
a
a
s
P
s
"}
(12,1,1) = {"
Expand Down Expand Up @@ -446,7 +450,7 @@ a
a
a
a
G
F
J
G
"}
Expand Down
14 changes: 3 additions & 11 deletions _maps/map_files/RandomRuins/SpaceRuins/oldstation.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -1054,10 +1054,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/ruin/ancientstation)
"de" = (
/obj/structure/transit_tube/crossing/horizontal,
/turf/template_noop,
/area/space/nearstation)
"df" = (
/obj/structure/cable/yellow,
/turf/simulated/floor/plating/airless,
Expand Down Expand Up @@ -4992,10 +4988,6 @@
/obj/machinery/power/tesla_coil,
/turf/simulated/floor/plating,
/area/ruin/ancientstation/thetacorridor)
"Db" = (
/obj/structure/transit_tube/crossing,
/turf/template_noop,
/area/space/nearstation)
"Lu" = (
/obj/structure/transit_tube/horizontal{
dir = 4
Expand Down Expand Up @@ -5810,7 +5802,7 @@ aa
aa
aa
aa
de
VT
aa
uQ
ck
Expand Down Expand Up @@ -7443,7 +7435,7 @@ aa
aa
aa
dk
Db
cX
aa
dg
dg
Expand Down Expand Up @@ -7506,7 +7498,7 @@ aa
aa
aa
aa
de
VT
aa
aa
aa
Expand Down
30 changes: 0 additions & 30 deletions _maps/map_files/generic/centcomm.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -3631,10 +3631,6 @@
/turf/simulated/floor/plasteel,
/area/admin)
"mt" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/mech_bay_recharge_port/upgraded,
/turf/simulated/floor/plasteel,
/area/admin)
Expand All @@ -3646,10 +3642,6 @@
/turf/simulated/floor/mineral/titanium,
/area/shuttle/administration)
"mw" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/computer/mech_bay_power_console,
/turf/simulated/floor/plasteel,
/area/admin)
Expand Down Expand Up @@ -8297,10 +8289,6 @@
/area/centcom/suppy)
"DD" = (
/obj/machinery/power/apc/directional/south,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
/obj/structure/sign/securearea{
pixel_x = -32
},
Expand Down Expand Up @@ -8344,15 +8332,6 @@
/turf/simulated/floor/plasteel/dark,
/area/admin)
"DL" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/mech_bay_recharge_port/upgraded,
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/gamma/space)
Expand All @@ -8363,11 +8342,6 @@
/area/centcom/specops)
"DN" = (
/obj/mecha/combat/marauder/ares/loaded,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/gamma/space)
"DO" = (
Expand Down Expand Up @@ -8440,10 +8414,6 @@
/turf/simulated/floor/engine,
/area/admin)
"DY" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/obj/machinery/computer/mech_bay_power_console{
dir = 1
},
Expand Down
Loading

0 comments on commit c6343df

Please sign in to comment.