Skip to content

Commit

Permalink
Update handling of 'verification' nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
dcnewman committed Jul 10, 2014
1 parent 44db760 commit 0dc0da7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/replicatorg/drivers/gen3/MightySailfish.java
Expand Up @@ -2133,9 +2133,12 @@ public String getMachineType(){
return "MightyBoard";
else if (this.machineId.equals(VidPid.THE_REPLICATOR))
return "The Replicator";
else if (this.machineId.equals(VidPid.REPLICATOR_2))
else if (this.machineId.equals(VidPid.REPLICATOR_2) || this.machineId.equals(VidPid.REPLICATOR_2h))
return "Replicator 2";
return "MightyBoard(unverified)";
else if (this.machineId.equals(VidPid.REPLICATOR_2X))
return "Replicator 2X";
else
return "MightyBoard(unverified)";
}


Expand Down

0 comments on commit 0dc0da7

Please sign in to comment.