Skip to content

Commit

Permalink
Попытка преодолеть ошибки проверок №2
Browse files Browse the repository at this point in the history
  • Loading branch information
msw7007 committed Jul 16, 2024
1 parent 1e75629 commit 876031c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modular_bandastation/instruments/code/drumskit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
layer = 2.5
anchored = FALSE
var/active = FALSE
allowed_instrument_ids = list("drums")
//Использутся, чтобы отслеживать, персонаж должен лежать или "сидеть" (стоять)
buckle_lying = FALSE
//Задает состояния и флаги Атома (как я понял) - взято из машинерии, иначе в строчке 75 вышибается ошибка
Expand All @@ -22,7 +21,7 @@
//Выбирает инструмент по умолчанию
song = new(src, "drums")
song.instrument_range = 15
song.allowed_instrument_ids = "drums"
song.allowed_instrument_ids = list("drums")

/obj/structure/musician/drumskit/Destroy()
UnregisterSignal(src, list(COMSIG_INSTRUMENT_START, COMSIG_INSTRUMENT_END))
Expand Down

0 comments on commit 876031c

Please sign in to comment.