From 826dfa3a6ac5558c5bc89609fef79d1d0001e5b5 Mon Sep 17 00:00:00 2001 From: MistakeNot4892 Date: Tue, 2 Mar 2021 18:17:22 +1100 Subject: [PATCH] Small cleanup from init PR. --- code/modules/nano/nanoui.dm | 2 +- code/modules/organs/internal/augment.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)