Jump to content

Sunken Loot table


Cuikui
  • Closed

An observation,

the loot table of Sunken Chest duplicates the keys. The loot produced is not that which can be read naturally.

For example,

chance_loot = {moonglass = 0.5,
			moonglass = 0.5,
			moonglass = 0.5,
			rock_avocado_fruit = 0.5,
			rock_avocado_fruit = 0.5,
			moonrocknugget = 0.25,},

is equivalent to

chance_loot = {moonglass = 0.5,
			rock_avocado_fruit = 0.5,
			moonrocknugget = 0.25,},

when he probably should have been

chance_loot = {{moonglass = 0.5},
			{moonglass = 0.5},
			{moonglass = 0.5},
			{rock_avocado_fruit = 0.5},
			{rock_avocado_fruit = 0.5},
			{moonrocknugget = 0.25},},

 


Steps to Reproduce

messagebottletreasures.lua

  • Like 3



User Feedback




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...