Every like gives me a bigger pumpkin head

Alright I think thats it lol

+3 -3
base_images/better_pumpkin_head.png

This is a binary file and will not be displayed.

base_images/pumpkin_body_cropped.jpg

This is a binary file and will not be displayed.

base_images/pumpkin_head.png

This is a binary file and will not be displayed.

+3 -3
main.go
··· 86 86 // Calculate position to center the head on top of the body 87 87 // Place head in upper portion of the image 88 88 headX := (bodyBounds.Dx() - newHeadWidth) / 2 89 - headY := bodyBounds.Dy()/8 - newHeadHeight/2 + 1900 // the 1900 is to line up with my head 89 + headY := bodyBounds.Dy()/8 - newHeadHeight/2 + 350 // the 1900 is to line up with my head 90 90 91 91 headPos := image.Rect(headX, headY, headX+newHeadWidth, headY+newHeadHeight) 92 92 ··· 97 97 } 98 98 99 99 func main() { 100 - pumpkin, err := NewPumpkinHead("base_images/pumpkin_body.jpg", "base_images/pumpkin_head.png", "bighead") 100 + pumpkin, err := NewPumpkinHead("base_images/pumpkin_body_cropped.jpg", "base_images/better_pumpkin_head.png", "bighead") 101 101 102 102 if err != nil { 103 103 writeErrorAndExit(err) ··· 107 107 fmt.Println("==================") 108 108 109 109 // Call the method 5 times to demonstrate 110 - for i := 0; i < 25; i++ { 110 + for i := 0; i < 100; i++ { 111 111 newPic, growingPains := pumpkin.GrowHead() 112 112 if growingPains != nil { 113 113 writeErrorAndExit(err)