From f4855fa71f352b572eea3986291f5c35ad6f866a Mon Sep 17 00:00:00 2001 From: Abnormal <86753001+AbnormalPoof@users.noreply.github.com> Date: Sun, 19 Jan 2025 08:38:40 -0600 Subject: [PATCH] this is more readable --- source/funkin/ui/transition/StickerSubState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/ui/transition/StickerSubState.hx b/source/funkin/ui/transition/StickerSubState.hx index f23def09af..9244a0a7ad 100644 --- a/source/funkin/ui/transition/StickerSubState.hx +++ b/source/funkin/ui/transition/StickerSubState.hx @@ -168,7 +168,7 @@ class StickerSubState extends MusicBeatSubState for (sticker in stickerSet.getPack("all")) { // add the asset key at the beginning of each sticker name because it's just easier lol - var stickerPack:Array = stickerSet.getStickers(sticker).map(s -> assetKey + "/" + s); + var stickerPack:Array = stickerSet.getStickers(sticker).map(s -> '${assetKey}/${s}'); stickers.set(sticker, stickerPack); } }