mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-31 07:57:47 +01:00
#undef is now required for all file defines (#24091)
* CI * undef * hooooly crap * yeah * false by default * fixes * alright, there we go * oops lmao * lol, lmao even * proper programming * fix * losin my mind * oops * yeah coloring * WE LOVE MULTIPLE DEFINES (ive lost my sanity)
This commit is contained in:
@@ -300,3 +300,5 @@ GLOBAL_LIST_EMPTY(antagonist_teams)
|
||||
content += "<a href='?_src_=holder;team_command=remove_member;team=[T.UID()];member=[M.UID()]'>Remove Member</a></li>"
|
||||
content += "</ol><a href='?_src_=holder;team_command=admin_add_member;team=[T.UID()]'>Add Member</a><hr>"
|
||||
return content.Join()
|
||||
|
||||
#undef DEFAULT_TEAM_NAME
|
||||
|
||||
@@ -1,11 +1,4 @@
|
||||
|
||||
// Defines below to be used with the `power_type` var.
|
||||
/// Denotes that this power is free and should be given to all changelings by default.
|
||||
#define CHANGELING_INNATE_POWER 1
|
||||
/// Denotes that this power can only be obtained by purchasing it.
|
||||
#define CHANGELING_PURCHASABLE_POWER 2
|
||||
/// Denotes that this power can not be obtained normally. Primarily used for base types such as [/datum/action/changeling/weapon].
|
||||
#define CHANGELING_UNOBTAINABLE_POWER 3
|
||||
|
||||
/datum/action/changeling
|
||||
name = "Prototype Sting"
|
||||
|
||||
@@ -141,3 +141,6 @@
|
||||
))
|
||||
|
||||
return abilities_by_category_name
|
||||
|
||||
#undef COMPACT_MODE
|
||||
#undef EXPANDED_MODE
|
||||
|
||||
@@ -64,8 +64,8 @@
|
||||
//Recent as opposed to all because rounds tend to have a LOT of text.
|
||||
var/list/recent_speech = list()
|
||||
|
||||
if(target.say_log.len > LING_ABSORB_RECENT_SPEECH)
|
||||
recent_speech = target.say_log.Copy(target.say_log.len-LING_ABSORB_RECENT_SPEECH+1,0) //0 so len-LING_ARS+1 to end of list
|
||||
if(target.say_log.len > CHANGELING_ABSORB_RECENT_SPEECH)
|
||||
recent_speech = target.say_log.Copy(target.say_log.len-CHANGELING_ABSORB_RECENT_SPEECH+1,0) //0 so len-LING_ARS+1 to end of list
|
||||
else
|
||||
recent_speech = target.say_log.Copy()
|
||||
|
||||
@@ -101,4 +101,4 @@
|
||||
target.Drain()
|
||||
return TRUE
|
||||
|
||||
#undef LING_ABSORB_RECENT_SPEECH
|
||||
#undef CHANGELING_ABSORB_RECENT_SPEECH
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
user.updatehealth("fakedeath sting")
|
||||
cling.regenerating = TRUE
|
||||
|
||||
addtimer(CALLBACK(src, PROC_REF(ready_to_regenerate), user), LING_FAKEDEATH_TIME)
|
||||
addtimer(CALLBACK(src, PROC_REF(ready_to_regenerate), user), CHANGELING_FAKEDEATH_TIME)
|
||||
SSblackbox.record_feedback("nested tally", "changeling_powers", 1, list("[name]"))
|
||||
return TRUE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user