From 3af35e1ce490c7c0d2886328f29e629fb5e07bb3 Mon Sep 17 00:00:00 2001 From: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Date: Fri, 3 Mar 2023 18:56:53 -0800 Subject: [PATCH] Fix emojipedia overriding create_spritesheets of the base class (#73718) --- code/modules/asset_cache/assets/emojipedia.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/asset_cache/assets/emojipedia.dm b/code/modules/asset_cache/assets/emojipedia.dm index b2c8c779fba..2197f1bff22 100644 --- a/code/modules/asset_cache/assets/emojipedia.dm +++ b/code/modules/asset_cache/assets/emojipedia.dm @@ -2,6 +2,6 @@ name = "emojipedia" cross_round_cachable = TRUE // The Emoji DMI is static and doesn't change without a commit mis-match. -/datum/asset/spritesheet/create_spritesheets() +/datum/asset/spritesheet/emojipedia/create_spritesheets() InsertAll("", EMOJI_SET)