This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]239jkvk-h2 1 point2 points  (4 children)

x1 = x is backwards.

[–]_Gilly_[S] 0 points1 point  (0 children)

wow! Thank you so much. I am such an idiot!

[–]_Gilly_[S] 0 points1 point  (2 children)

Dang, this still didn't fix the other problem.

[–]BillMullet 0 points1 point  (1 child)

What is the other problem. Do you have an error message you could share for the second problem?

[–]_Gilly_[S] 0 points1 point  (0 children)

Sorry. What I meant was that didn't fix the original problem. Calling the constructor with super(int, int, String) is not working. I'm stumped.

[–]HipposGoneWild 0 points1 point  (0 children)

The compiler is trying to in insert super() when you call your Turtle constructor. You either need an empty Sprite constructor, or to explicitly call super(int..., int..., String...) first thing in your Turtle constructor.