diff --git a/Server/src/main/core/api/ContentAPI.kt b/Server/src/main/core/api/ContentAPI.kt index ef1cfbad7..09e0840d5 100644 --- a/Server/src/main/core/api/ContentAPI.kt +++ b/Server/src/main/core/api/ContentAPI.kt @@ -3034,6 +3034,9 @@ fun applyPoison (entity: Entity, source: Entity, severity: Int) { if(hasTimerActive(entity)) { return } + if(entity.isPoisonImmune()) { + return + } val existingTimer = getTimer(entity) if (existingTimer != null) {