Skip to content

Commit

Permalink
linters...
Browse files Browse the repository at this point in the history
  • Loading branch information
Sun-Soaked committed Nov 8, 2023
1 parent 8919ec9 commit d43b33e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/_onclick/hud/storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@

/atom/movable/screen/storage/volumetric_box/Initialize(mapload, new_master, obj/item/our_item)
src.our_item = our_item
RegisterSignal(our_item, COMSIG_ITEM_MOUSE_ENTER, .proc/on_item_mouse_enter)
RegisterSignal(our_item, COMSIG_ITEM_MOUSE_EXIT, .proc/on_item_mouse_exit)
RegisterSignal(our_item, COMSIG_ITEM_MOUSE_ENTER, PROC_REF(on_item_mouse_enter))
RegisterSignal(our_item, COMSIG_ITEM_MOUSE_EXIT, PROC_REF(on_item_mouse_exit))
return ..()

/atom/movable/screen/storage/volumetric_box/Destroy()
Expand Down
2 changes: 1 addition & 1 deletion code/datums/components/storage/ui.dm
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
// in tiles
var/maxallowedscreensize = cview[1]-8
// we got screen size, register signal
RegisterSignal(M, COMSIG_PARENT_QDELETING, .proc/on_logout, override = TRUE)
RegisterSignal(M, COMSIG_PARENT_QDELETING, PROC_REF(on_logout), override = TRUE)
if(M.active_storage != src)
if(M.active_storage)
M.active_storage.ui_hide(M)
Expand Down

0 comments on commit d43b33e

Please sign in to comment.