Skip to content

Commit

Permalink
HOT-FIX: Чинит билд от не определенного имени квирка (#1296)
Browse files Browse the repository at this point in the history
* Фикс названия дефайна

* Update nanotrasen_ranger.dmm

Signed-off-by: MrCat15352 <[email protected]>

* Update nanotrasen_ranger.dmm

Signed-off-by: MrCat15352 <[email protected]>

* Update nanotrasen_darect.dmm

Signed-off-by: MrCat15352 <[email protected]>

* Update nanotrasen_darect.dmm

Signed-off-by: MrCat15352 <[email protected]>

* Update nanotrasen_ranger.dmm

Signed-off-by: MrCat15352 <[email protected]>

---------

Signed-off-by: MrCat15352 <[email protected]>
  • Loading branch information
MrCat15352 authored Dec 23, 2024
1 parent bfa1ff3 commit e57d964
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/init_signals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
SIGNAL_HANDLER
// [CELADON-EDIT] - CELADON_QUIRKS
// ADD_TRAIT(src, TRAIT_UI_BLOCKED, TRAIT_INCAPACITATED) // CELADON-EDIT - ORIGINAL
if(!HAS_TRAIT(src, TRAIT_LAST_SHANCE))
if(!HAS_TRAIT(src, TRAIT_INCREASED_SURVIVAL))
ADD_TRAIT(src, TRAIT_UI_BLOCKED, TRAIT_INCAPACITATED)
// [/CELADON-EDIT]
ADD_TRAIT(src, TRAIT_PULL_BLOCKED, TRAIT_INCAPACITATED)
Expand All @@ -153,7 +153,7 @@
SIGNAL_HANDLER
// [CELADON-EDIT] - CELADON_QUIRKS
// ADD_TRAIT(src, TRAIT_HANDS_BLOCKED, TRAIT_RESTRAINED) // CELADON-EDIT - ORIGINAL
if(!HAS_TRAIT(src, TRAIT_LAST_SHANCE))
if(!HAS_TRAIT(src, TRAIT_INCREASED_SURVIVAL))
ADD_TRAIT(src, TRAIT_HANDS_BLOCKED, TRAIT_RESTRAINED)
// [/CELADON-EDIT]

Expand Down
6 changes: 3 additions & 3 deletions code/modules/mob/living/living.dm
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@
layer = LYING_MOB_LAYER //so mob lying always appear behind standing mobs
// [CELADON-EDIT] - CELADON_QUIRKS
// ADD_TRAIT(src, TRAIT_UI_BLOCKED, LYING_DOWN_TRAIT) // CELADON-EDIT - ORIGINAL
if(!HAS_TRAIT(src, TRAIT_LAST_SHANCE))
if(!HAS_TRAIT(src, TRAIT_INCREASED_SURVIVAL))
ADD_TRAIT(src, TRAIT_UI_BLOCKED, LYING_DOWN_TRAIT)
// [/CELADON-EDIT]
ADD_TRAIT(src, TRAIT_PULL_BLOCKED, LYING_DOWN_TRAIT)
Expand Down Expand Up @@ -1647,9 +1647,9 @@ GLOBAL_VAR_INIT(ssd_indicator_overlay, mutable_appearance('icons/mob/ssd_indicat
// [CELADON-EDIT] - CELADON_QUIRKS
// ADD_TRAIT(src, TRAIT_HANDS_BLOCKED, STAT_TRAIT)
// ADD_TRAIT(src, TRAIT_INCAPACITATED, STAT_TRAIT) // CELADON-EDIT - ORIGINAL
if(!HAS_TRAIT(src, TRAIT_LAST_SHANCE))
if(!HAS_TRAIT(src, TRAIT_INCREASED_SURVIVAL))
ADD_TRAIT(src, TRAIT_HANDS_BLOCKED, STAT_TRAIT)
if(!HAS_TRAIT(src, TRAIT_LAST_SHANCE))
if(!HAS_TRAIT(src, TRAIT_INCREASED_SURVIVAL))
ADD_TRAIT(src, TRAIT_INCAPACITATED, STAT_TRAIT)
// [/CELADON-EDIT]
ADD_TRAIT(src, TRAIT_FLOORED, STAT_TRAIT)
Expand Down

0 comments on commit e57d964

Please sign in to comment.