Skip to content

Commit

Permalink
Merge branch 'master220' into Wryn_Resprite_and_More
Browse files Browse the repository at this point in the history
  • Loading branch information
oi98 authored Dec 11, 2024
2 parents 9e39cbb + 85a42d1 commit 5b66b77
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions code/modules/space_management/zlevel_manager.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,10 @@ GLOBAL_DATUM_INIT(space_manager, /datum/zlev_manager, new())


/datum/zlev_manager/proc/get_zlev(z)
if(!("[z]" in z_list))
log_runtime(EXCEPTION("Unmanaged z level: '[z]'"))
else
return z_list["[z]"]
return z_list["[z]"] == null ? log_runtime(EXCEPTION("Unmanaged z level: '[z]'")) : z_list["[z]"]

/datum/zlev_manager/proc/get_zlev_by_name(A)
if(!(A in levels_by_name))
log_runtime(EXCEPTION("Non-existent z level: '[A]'"))
return levels_by_name[A]
return levels_by_name[A] == null ? log_runtime(EXCEPTION("Non-existent z level: '[A]'")) : levels_by_name[A]

/*
* "Dirt" management
Expand Down
Binary file modified icons/mob/clothing/eyes.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/drask/eyes.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/grey/eyes.dmi
Binary file not shown.
Binary file modified icons/mob/clothing/species/vox/eyes.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/glasses.dmi
Binary file not shown.

0 comments on commit 5b66b77

Please sign in to comment.