From 16d6beaca50e97a8066e9be245f2377f84685a47 Mon Sep 17 00:00:00 2001 From: mochi Date: Fri, 18 Sep 2020 20:26:30 +0200 Subject: [PATCH] Add NanoMaps to Reload UI Resources verb --- code/modules/client/client procs.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index ae503be111b..39be5c69066 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -939,6 +939,9 @@ var/datum/asset/tgui_assets = get_asset_datum(/datum/asset/simple/tgui) tgui_assets.register() + var/datum/asset/nanomaps = get_asset_datum(/datum/asset/simple/nanomaps) + nanomaps.register() + // Clear the user's cache so they get resent. // This is not fully clearing their BYOND cache, just their assets sent from the server this round cache = list()