Skip to content

Commit

Permalink
Removing testing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Nov 20, 2023
1 parent b841a74 commit 75ee12c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
6 changes: 0 additions & 6 deletions code/modules/asset_cache/asset_list.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@ GLOBAL_LIST_EMPTY(asset_datums)
GLOB.asset_datums[type] = src
register()

/datum/asset/Destroy(force, ...)
. = ..()

log_debug("[type] has been destroyed.")
stack_trace("[type] has been destroyed.") // Remove these after testing - Morrow

/datum/asset/proc/get_url_mappings()
return list()

Expand Down
7 changes: 2 additions & 5 deletions code/modules/asset_cache/asset_list_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -305,16 +305,13 @@
name = "vending"

/datum/asset/spritesheet/vending_products/register()
log_debug("[type] is registering.")
stack_trace("[type] is registering.") // Remove these after testing - Morrow

for (var/k in GLOB.vending_products)
for(var/k in GLOB.vending_products)
var/atom/item = k
var/icon_file = initial(item.icon)
var/icon_state = initial(item.icon_state)
var/icon/I

if (!ispath(item, /atom))
if(!ispath(item, /atom))
log_debug("not atom! [item]")
continue

Expand Down

0 comments on commit 75ee12c

Please sign in to comment.