Skip to content

Commit

Permalink
Re-enables Soulcatcher checks (#4128)
Browse files Browse the repository at this point in the history
* Update handheld_soulcatcher.dm

* Update soulcatcher_base.dm
  • Loading branch information
dwasint authored Nov 6, 2024
1 parent 519c326 commit 3932c07
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,13 @@ GLOBAL_LIST_EMPTY(soulcatchers)

/// Checks the total number of souls present and compares it with `max_souls` returns `TRUE` if there is room (or no limit), otherwise returns `FALSE`
/datum/component/soulcatcher/proc/check_for_vacancy()
return FALSE
/*if(!max_souls)
if(!max_souls)
return TRUE

if(length(get_current_souls()) >= max_souls)
return FALSE

return TRUE*/
return TRUE

/// Attempts to remove the soulcatcher from the attached object
/datum/component/soulcatcher/proc/remove_self()
Expand Down

0 comments on commit 3932c07

Please sign in to comment.