From: Anthony Moralez Date: 2005-10-20T00:09:59+09:00 Subject: Re: [QUIZ] Lost Cities (#51) To work in Daniel's harness, RiskPlayer needs to call super in the initialize method also. On 10/19/05, James Edward Gray II wrote: > On Oct 14, 2005, at 7:34 AM, Ruby Quiz wrote: > > > #!/usr/local/bin/ruby -w > > > > class DumbPlayer < Player > > def initialize > > super > > > @data = "" > > > > @plays = nil > > @discard = nil > > end > > # ... > > The above addition allows DumbPlayer to play from the server side as > well as the client. This is an oversight on my part. Sorry. > > James Edward Gray II > > >