mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 20:11:04 +01:00
AmbiguousInOrder ODLint (#20046)
Enabled AmbiguousInOrder OpenDream linting to error out Fixed ambiguous orders with parenthesis to explicit orders No player facing changes
This commit is contained in:
@@ -158,10 +158,10 @@
|
||||
SPAN_DANGER("You feel the cold of the knife cutting and cutting, but it is too late. There is nothing left of you but the Lii'dra's will, now. A final cut - and then you are granted the only escape that still remains to you."))
|
||||
to_chat(target, SPAN_GOOD("Your function is fulfilled. We have no further need of you. Releasing control."))
|
||||
target.death(FALSE) //too late, there is no brain left to save
|
||||
if(GLOB.all_languages[LANGUAGE_VAURCA] in target.languages && stage >= 3 && !isvaurca(target))
|
||||
if((GLOB.all_languages[LANGUAGE_VAURCA] in target.languages) && stage >= 3 && !isvaurca(target))
|
||||
target.remove_language(LANGUAGE_VAURCA)
|
||||
to_chat(target, SPAN_WARNING("Your mind suddenly grows dark as the unity of the Hive is torn from you."))
|
||||
if(GLOB.all_languages[LANGUAGE_LIIDRA] in target.languages && stage >= 3)
|
||||
if((GLOB.all_languages[LANGUAGE_LIIDRA] in target.languages) && stage >= 3)
|
||||
target.remove_language(LANGUAGE_LIIDRA)
|
||||
removed_langs = 0
|
||||
remove_verb(owner, /mob/living/carbon/human/proc/kois_cough)
|
||||
|
||||
Reference in New Issue
Block a user