[Bleeding] Cleanup clone methods.

This commit is contained in:
Wesley Wolfe
2012-02-14 01:49:06 -06:00
committed by EvilSeph
parent eace91d627
commit 870d10b077
41 changed files with 204 additions and 30 deletions

View File

@@ -89,4 +89,9 @@ public class Pumpkin extends MaterialData implements Directional {
public String toString() {
return super.toString() + " facing " + getFacing() + " " + (isLit() ? "" : "NOT ") + "LIT";
}
@Override
public Pumpkin clone() {
return (Pumpkin) super.clone();
}
}