Jump to content

Recommended Posts

  • Developer
  • Fixed a crash caused by Wigfrid’s Battle Helm
  • Fixed a crash when giving Abigail Elixirs
  • Fixed the rotation of Wooden Gates
  • Fixed an issue causing items drops to fail to be opened correctly
  • Notes for modders: Child objects now inherit their parent’s rotation
     

View full update

  • Like 11
  • Thanks 2
  • Haha 1
Link to comment
https://forums.kleientertainment.com/forums/topic/128512-game-update-458638/
Share on other sites

1 minute ago, aresd said:

It seems to me that the patch note is not complete. Because there is no information why the servers crashed upon login

"Fixed a crash caused by Wigfrid’s Battle Helm"

If you had a Wigfrid helm anywhere in your world, the world would fail on login.

  • Like 1
51 minutes ago, ScottHansen said:

Notes for modders: Child objects now inherit their parent’s rotation

My child objects were already inheriting their parent rotation before this update, and still do. 
Does this change affect a specific type of prefab setup? 

 

Spoiler

Here's what mine looked like:


local inst = CreateEntity()
	inst.entity:SetCanSleep(false)
	inst.persists = false

	-- adds
	inst.entity:AddTransform()
	inst.entity:AddAnimState()

	-- tags
	inst:AddTag("NOBLOCK")
	inst:AddTag("NOCLICK")
	inst:AddTag("CLASSIFIED")
	
	-- animations
	inst.AnimState:SetBank("bank_rt")
	inst.AnimState:SetBuild("range_tweak")
	inst.AnimState:PlayAnimation("idle")
	inst.AnimState:SetOrientation(ANIM_ORIENTATION.OnGround)
	inst.AnimState:SetLayer(LAYER_BACKGROUND)
	inst.AnimState:SetSortOrder(3)

   	return inst

 

 

 

 

 

Edited by penguin0616
  • Like 1

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