| ConfirmCreationStep.java |
/*
Copyright (C) 2005 David Green <green@couchpotato.net>
All Rights Reserved.
This file is part of Aelfengard.
Aelfengard is proprietary software. You may not redistribute it without
prior written permission from the copyright holder.
*/
package server.login;
public class ConfirmCreationStep {
private final LoginHandler handler;
public ConfirmCreationStep(LoginHandler handler) {
this.handler = handler;
}
public boolean run() throws Exception {
handler.println(false, "");
handler.println(false, "@ZZZ@10FWARNING@ZZZ: There's not much to do here " +
"yet. But we're working on it!");
return new ChooseYesNoStep(handler).run("Would you like to create a new account");
}
}