Skip to content

Commit 3c4f222

Browse files
authored
Disable thirst for robotic species (#291)
Adds TRAIT_NOTHIRST to synthetic lizardperson, synthetic anthropomorph, and IPC.
1 parent f99b59a commit 3c4f222

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/datum/species/mammal/synthetic/New()
2+
. = ..()
3+
4+
// Define inherent traits to add
5+
var/modular_inherent_traits = list(TRAIT_NOTHIRST)
6+
7+
// Add new traits to list
8+
LAZYADD(inherent_traits, modular_inherent_traits)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/datum/species/ipc/New()
2+
. = ..()
3+
4+
// Define inherent traits to add
5+
var/modular_inherent_traits = list(TRAIT_NOTHIRST)
6+
7+
// Add new traits to list
8+
LAZYADD(inherent_traits, modular_inherent_traits)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/datum/species/synthliz/New()
2+
. = ..()
3+
4+
// Define inherent traits to add
5+
var/modular_inherent_traits = list(TRAIT_NOTHIRST)
6+
7+
// Add new traits to list
8+
LAZYADD(inherent_traits, modular_inherent_traits)

tgstation.dme

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4124,7 +4124,10 @@
41244124
#include "modular_sand\code\modules\mob\living\carbon\human\human_stripping.dm"
41254125
#include "modular_sand\code\modules\mob\living\carbon\human\life.dm"
41264126
#include "modular_sand\code\modules\mob\living\carbon\human\species.dm"
4127+
#include "modular_sand\code\modules\mob\living\carbon\human\species_types\anthropomorph.dm"
4128+
#include "modular_sand\code\modules\mob\living\carbon\human\species_types\ipc.dm"
41274129
#include "modular_sand\code\modules\mob\living\carbon\human\species_types\lizardpeople.dm"
4130+
#include "modular_sand\code\modules\mob\living\carbon\human\species_types\synthliz.dm"
41284131
#include "modular_sand\code\modules\mob\living\silicon\silicon.dm"
41294132
#include "modular_sand\code\modules\mob\living\silicon\ai\ai.dm"
41304133
#include "modular_sand\code\modules\mob\living\silicon\ai\vox_sounds.dm"

0 commit comments

Comments
 (0)