[13] in Coldmud discussion meeting

root meeting help first previous next next in chain last in chain last

$connection and $sys.startup()

daemon@ATHENA.MIT.EDU (Mon Nov 15 20:09:41 1993 )

Date: Mon, 15 Nov 1993 18:04:22 -0600 (MDT)
From: Lynx <BRANDON@cc.usu.edu>
To: coldstuff@MIT.EDU
X-Vms-To: IN%"coldstuff@mit.edu"

Earlier Greg said to place:


 for obj in ($connection.children())
   destroy(obj);

well, this wouldnt work, so I changed it to:

 for obj in ($connection.children())
   obj.destroy();

_dont_ do this, you cannot re-connect.

Luckilly I had a textdump and I changed it to:

   olist = $connection.children();
   for o in [1..listlen(olist) -1]
     olist[o].destroy();

this will leave 1 child of $connection, so you can connect.  I dont know if
this is the best way to do it, but it works :)

-Lynx/Brandon/Me.