From 49325649b967957aeaeef2021872e3e34801c7aa Mon Sep 17 00:00:00 2001 From: MrKicker Date: Tue, 27 Nov 2018 23:59:51 -0500 Subject: [PATCH] sort callable holopad names sorts the callable holopads before displaying --- code/game/machinery/hologram.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm index 20132f614af..aba817e0181 100644 --- a/code/game/machinery/hologram.dm +++ b/code/game/machinery/hologram.dm @@ -206,6 +206,7 @@ var/list/holopads = list() if(A) LAZYADD(callnames[A], I) callnames -= get_area(src) + callnames = sortNames(callnames) //Sorts the now complete callable list for ease of use dialling_input = TRUE var/result = input(usr, "Choose an area to call", "Holocall") as null|anything in callnames dialling_input = FALSE