fmt.Fprintf(system.colonizedBy,"mining colony on %s pays you %d space duckets. total: %d space duckets.\n",system.name,reward,system.colonizedBy.money)
@ -220,18 +220,6 @@ var winCommand = &Command{
},
}
funcmove(conn*Connection,to*System){
start:=conn.System()
start.Leave(conn)
delay:=start.TravelTimeTo(to)
fmt.Fprintf(conn,"moving to %s. ETA: %v\n",to.name,delay)
After(delay,func(){
to.Arrive(conn)
fmt.Fprintf(conn,"You have arrived at the %s system after a total travel time of %v.\n",to.name,delay)