Skip to content

Commit

Permalink
Fixes Cargorilla never working (#1835)
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy authored May 5, 2024
1 parent d5ba4db commit 79b5306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/basic/pets/sloth.dm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ GLOBAL_DATUM(cargo_sloth, /mob/living/basic/sloth)
AddElement(/datum/element/ai_retaliate)
AddComponent(/datum/component/tree_climber)

if(!mapload || isnull(GLOB.cargo_sloth) || !is_station_level(z))
if(!mapload || !isnull(GLOB.cargo_sloth) || !is_station_level(z))
return

// If someone adds non-cargo sloths to maps we'll have a problem but we're fine for now
Expand Down

0 comments on commit 79b5306

Please sign in to comment.