Jump to content

(SW) Consistent Crash During Volcano Shower


Mathias_Bras
  • Pending

For whatever reason I cannot post to the shipwrecked bug form.  Hopefully a mod can move it over.  

I am experiencing this but 100% of the time.  During the Volcano Shower I get the same crash.  It sucks because I cant progress anymore.  Hopefully this helps!

219740_screenshots_20160430220711_1.jpg


Steps to Reproduce
1. Sailing around dodging volcanic balls



User Feedback


Well, I fixed my bug.  I found the lua file and replaced the offending code

minion.minionnumber = self.freepositions[math.random(#self.freepositions)]

I replaced it with

		if (#self.freepositions <= 0) then
			minion.minionnumber = self.freepositions[math.random(1)]
		else
			minion.minionnumber = self.freepositions[math.random(#self.freepositions)]
		end

I can't say I know what the root issue was here other than the length self.freepositions appeared to be -1.  Hopefully setting the minion number to 1 doesn't screw too much up.

Share this comment


Link to comment
Share on other sites



Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...