Merge pull request #620 from Mloc/master

bugfixes
This commit is contained in:
Mloc
2012-03-04 08:28:30 -08:00
2 changed files with 3 additions and 1 deletions

View File

@@ -212,12 +212,12 @@
L.Add(C)
camera_sort(L)
L = camera_network_sort(L)
var/list/D = list()
for (var/obj/machinery/camera/C in L)
if ( C.network in src.networks )
D[text("[]: [][]", C.network, C.c_tag, (C.status ? null : " (Deactivated)"))] = C
D = camera_network_sort(D)
D["Cancel"] = "Cancel"
var/t = input(user, "Which camera should you change to?") as null|anything in D

View File

@@ -393,6 +393,8 @@
var/datum/comm_log_entry/log = new
var/mob/M = signal.data["mob"]
if(istype(M, /mob/new_player))
return //Kludgy fix, will route out the real cause later --mloc
// Copy the signal.data entries we want
log.parameters["mobtype"] = signal.data["mobtype"]