summaryrefslogtreecommitdiffstats
path: root/src/peds
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-04-09 12:30:23 +0200
committerGitHub <noreply@github.com>2020-04-09 12:30:23 +0200
commit6297a9da11ec19230e0aea4b94a8fe728a817944 (patch)
tree796692cb6ddd222b59814a32c7534c8be802d564 /src/peds
parentMerge pull request #390 from Sergeanur/Explosion (diff)
parentCheats (diff)
downloadre3-6297a9da11ec19230e0aea4b94a8fe728a817944.tar
re3-6297a9da11ec19230e0aea4b94a8fe728a817944.tar.gz
re3-6297a9da11ec19230e0aea4b94a8fe728a817944.tar.bz2
re3-6297a9da11ec19230e0aea4b94a8fe728a817944.tar.lz
re3-6297a9da11ec19230e0aea4b94a8fe728a817944.tar.xz
re3-6297a9da11ec19230e0aea4b94a8fe728a817944.tar.zst
re3-6297a9da11ec19230e0aea4b94a8fe728a817944.zip
Diffstat (limited to 'src/peds')
-rw-r--r--src/peds/PedType.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/peds/PedType.h b/src/peds/PedType.h
index 1f3ecb59..3d927df5 100644
--- a/src/peds/PedType.h
+++ b/src/peds/PedType.h
@@ -85,6 +85,7 @@ public:
static uint32 GetFlag(int type) { return ms_apPedType[type]->m_flag; }
static uint32 GetAvoid(int type) { return ms_apPedType[type]->m_avoid; }
static uint32 GetThreats(int type) { return ms_apPedType[type]->m_threats; }
+ static void SetThreats(int type, uint32 threat) { ms_apPedType[type]->m_threats = threat; }
static void AddThreat(int type, int threat) { ms_apPedType[type]->m_threats |= threat; }
static void RemoveThreat(int type, int threat) { ms_apPedType[type]->m_threats &= ~threat; }
static bool IsThreat(int type, int threat) { return ms_apPedType[type]->m_threats & threat; }