diff --git a/tests/DMAPI/BasicOperation/Test.dm b/tests/DMAPI/BasicOperation/Test.dm index 21ba9e6226..a603a099be 100644 --- a/tests/DMAPI/BasicOperation/Test.dm +++ b/tests/DMAPI/BasicOperation/Test.dm @@ -25,6 +25,10 @@ world.log << "You really shouldn't be able to read this" +/world/Export(url) + log << "Export: [url]" + return ..() + /world/Topic(T, Addr, Master, Keys) world.log << "Topic: [T]" . = HandleTopic(T) diff --git a/tests/DMAPI/LongRunning/Test.dm b/tests/DMAPI/LongRunning/Test.dm index 341fbe260b..f74dd265f3 100644 --- a/tests/DMAPI/LongRunning/Test.dm +++ b/tests/DMAPI/LongRunning/Test.dm @@ -12,9 +12,9 @@ world.TgsInitializationComplete() /world/Topic(T, Addr, Master, Keys) - world.log << "Topic: [T]" + log << "Topic: [T]" . = HandleTopic(T) - world.log << "Response: [.]" + log << "Response: [.]" /world/proc/HandleTopic(T) TGS_TOPIC @@ -41,6 +41,10 @@ world.TgsChatBroadcast("Recieved event: [json_encode(args)]") +/world/Export(url) + log << "Export: [url]" + return ..() + /proc/RebootAsync() set waitfor = FALSE world.sleep_offline = FALSE