diff --git a/code/modules/nano/nanoui.dm b/code/modules/nano/nanoui.dm index f0331f77da..21ea218b53 100644 --- a/code/modules/nano/nanoui.dm +++ b/code/modules/nano/nanoui.dm @@ -404,7 +404,7 @@ nanoui is used to open and update nano browser uis // An attempted fix to UIs sometimes locking up spamming runtime errors due to src_object being null for whatever reason. // This hard-deletes the UI, preventing the device that uses the UI from being locked up permanently. if(!src_object) - qdel(src) + del(src) var/window_size = "" if (width && height) diff --git a/code/modules/organs/internal/augment.dm b/code/modules/organs/internal/augment.dm index 831d9d3b89..cfd5768846 100644 --- a/code/modules/organs/internal/augment.dm +++ b/code/modules/organs/internal/augment.dm @@ -31,7 +31,7 @@ var/last_activate = null /obj/item/organ/internal/augment/Initialize() - . ..() + . = ..() setup_radial_icon() if(integrated_object_type) integrated_object = new integrated_object_type(src)