Skip to content

Commit

Permalink
Update observer.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
blackdragonTOW committed Mar 20, 2024
1 parent b96afac commit 9b02a20
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions code/modules/mob/dead/observer/observer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -811,10 +811,13 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
set category = "Ghost.Settings"

if(client)
if(client.view != GLOB.world_view_size)
client.change_view(GLOB.world_view_size)
else
// Check the current zoom level and toggle to the next level cyclically
if (client.view == GLOB.world_view_size)
client.change_view(14)
else if (client.view == 14)
client.change_view(28)
else
client.change_view(GLOB.world_view_size)


/mob/dead/observer/verb/toggle_darkness()
Expand Down

0 comments on commit 9b02a20

Please sign in to comment.