Jump to content

Recommended Posts

Posted

This will never be true...

	    for(int spawns = 0; spawns > 5; spawns++) {
	      EVOKER_FANGS.setPosition(playerIn.posX + aim.x * 1, playerIn.posY, playerIn.posZ + aim.z);
	      worldIn.addEntity(EVOKER_FANGS);
	      
	    }

 

Posted (edited)

for(int spawns = 0; spawns > 5; spawns++)

what you trying to do here is "while spawn is bigger than 5 (which is 0 at the start), this is true, and add spawn by one" <-- never going to be true, so change > to < 

 

also 

  Quote

EvokerFangsEntity EVOKER_FANGS = new EvokerFangsEntity(worldIn, 1, 2, 3, 4, 5, playerIn);

Expand  

what is that 1, 2, 3, 4, 5 for? you should be able to just use the first constructor.

Edited by poopoodice

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.