Jump to content

PhilJHerman

Member
  • Posts

    2
  • Joined

  • Last visited

Everything posted by PhilJHerman

  1. Sandbox variables are often used to set loot table values in mods. This works great the first time you create a game - but if you create a multiplayer game and update the sandbox settings this does not get updated in the game. The game does not seem to know that the sandbox settings have been updated until after distributions are done. If you check with the console on each distribution event you will see original sandbox settings, if you check in game, you will see updated ones. This issue is located in the file: zombie/iso/IsoWorld.java #1665 Xyberviri explains it better on this forum:
  2. Yes please! I had a lot of trouble with my mod before I found out that sandbox settings variables cannot reliably be used to fill loot tables. It works the first time - but not after that. It always reuses the original variables. If you check those variables in game - they will be updated - but they get updated after distribution happens - so it is too late. table.insert(ProceduralDistributions.list["BathroomCounter"].items, "module.someitem"); table.insert(ProceduralDistributions.list["BathroomCounter"].items, *SANDBOX REFERENCE ONLY WORKS THE FIRST TIME HERE*);
×
×
  • Create New...