Fix runtime related to pea bullets (#90862)

## About The Pull Request

The peashooter and probably gatfruit runtimes every time a bullet hits
because it tries to `&` a datum and a number

## Why It's Good For The Game

Bug fix

## Changelog

🆑
fix: fixed a runtime related to pea bullet impacts
/🆑
This commit is contained in:
Roxy
2025-04-28 12:01:08 -04:00
committed by GitHub
parent 3b91cd1434
commit 66be0ce547

View File

@@ -185,6 +185,6 @@
blocked = 100
target.visible_message(span_danger("\The [src] is deflected!"), span_userdanger("You are protected against \the [src]!"))
. = ..()
if(reagents & NO_REACT) //first impact on a noncarbon
if(reagents.flags & NO_REACT) //first impact on a noncarbon
reagents.flags &= ~(NO_REACT)
reagents.handle_reactions()