From 6864dee4f584e11a6ee6be44cf6a59df2764f95d Mon Sep 17 00:00:00 2001 From: Robert Fritzen Date: Wed, 26 Feb 2014 15:05:04 -0600 Subject: [PATCH] News Panel Updated the News Panel to point to the thread on the current PGD Forums... --- scripts/TWM2/Systems/NewsPanel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/TWM2/Systems/NewsPanel.cs b/scripts/TWM2/Systems/NewsPanel.cs index 7c9eb62..4627202 100644 --- a/scripts/TWM2/Systems/NewsPanel.cs +++ b/scripts/TWM2/Systems/NewsPanel.cs @@ -1,10 +1,10 @@ function DownloadNewsPage() { $TWM::Ticks = 0; - %server = "www.public.phantomdev.net:80"; // + %server = "www.forums.phantomdev.net:80"; // if (!isObject(PageGrabber)) %Downloader = new HTTPObject(PageGrabber){}; else %Downloader = PageGrabber; - %filename = "/SMF/index.php/topic,422.0.html"; //File Location + %filename = "/viewtopic.php?f=11&t=416"; //File Location %Downloader.get(%server, %filename); }