[NO GBP] Fixes the MOD Soul Core saying it has no charge in the UI while worn (#91244)

## About The Pull Request

I made an oopsie and forgot a single NOT operation in the line that
checks if the suit is being worn.
This also almost certainly fixes a runtime that I assume would happen
when looking at the interface of a suit not currently being worn.

## Why It's Good For The Game

The soul core isn't supposed to tell you there's no charge source when
it is clearly fully functioning.

## Changelog

🆑
fix: The MOD soul core no longer tells you there's no charge source
while worn.
/🆑
This commit is contained in:
Y0SH1M4S73R
2025-05-26 13:35:30 +00:00
committed by GitHub
parent 1ecadb4a40
commit c4897e7c03
+1 -1
View File
@@ -605,7 +605,7 @@
/obj/item/mod/core/soul/get_chargebar_string()
var/mob/living/wearer = mod.wearer
if(wearer || HAS_TRAIT(wearer, TRAIT_NO_SOUL))
if(!wearer || HAS_TRAIT(wearer, TRAIT_NO_SOUL))
return "No power source detected."
if(CONFIG_GET(flag/disable_human_mood))
return "Infinite"