Skip to content

Commit

Permalink
sight-block
Browse files Browse the repository at this point in the history
  • Loading branch information
Builder13 committed Oct 25, 2024
1 parent 16cc61d commit d40c4f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions baystation12.dme
Original file line number Diff line number Diff line change
Expand Up @@ -3370,6 +3370,7 @@
#include "mods\_master_files\code\modules\culture_descriptor\religion\religions_unathi.dm"
#include "mods\_master_files\code\modules\culture_descriptor\religion\religions_vox.dm"
#include "mods\_master_files\code\modules\events\gravity.dm"
#include "mods\_master_files\code\modules\mob\living\life.dm"
#include "mods\_master_files\code\modules\mob\new_player\new_player.dm"
#include "mods\_master_files\code\modules\overmap\distress.dm"
#include "mods\_master_files\code\modules\overmap\panicbutton.dm"
Expand Down
8 changes: 8 additions & 0 deletions mods/_master_files/code/modules/mob/living/life.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//stop sight update
/mob
var/stop_sight_update = FALSE //for update_sight()

/mob/living/update_sight()
if(stop_sight_update) return
..()
//

0 comments on commit d40c4f5

Please sign in to comment.