Skip to content

Commit

Permalink
overheat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
X0-11 committed Jun 3, 2024
1 parent 38fe46e commit 51026d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/halo/weapons/gun_overheat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
else
qdel(heat_bar)
heat_bar = null
STOP_PROCESSING(SSobj, src)
STOP_PROCESSING(SSobj, src)

/obj/item/weapon/gun/proc/overheat_sfx(var/origin)
if(overheat_sfx)
Expand Down
4 changes: 3 additions & 1 deletion code/modules/mob/observer/virtual/base.dm
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,6 @@ var/list/all_virtual_listeners = list()
return TRUE

/mob/shall_have_virtual_mob()
return ispath(initial(virtual_mob))
var/init_virt = initial(virtual_mob)
if(!isnull(init_virt))
return ispath(init_virt)

0 comments on commit 51026d2

Please sign in to comment.