From 610a0e6d5e6364a7cb887f26eb2d72848b093cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sun, 8 Aug 2021 18:35:21 -0700 Subject: [PATCH] fix error that caused only player to be affected I'm really dumb sometimes --- MWSE/mods/celediel/ASinkingFeeling/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MWSE/mods/celediel/ASinkingFeeling/main.lua b/MWSE/mods/celediel/ASinkingFeeling/main.lua index 5c4dc90..608db51 100644 --- a/MWSE/mods/celediel/ASinkingFeeling/main.lua +++ b/MWSE/mods/celediel/ASinkingFeeling/main.lua @@ -76,7 +76,7 @@ local function sinkInWater(e) end -- finally add down-pull from configured formula to tes3.mobilePlayer.velocity.z to simulate being pulled down - tes3.mobilePlayer.velocity.z = -downPull + mobile.velocity.z = -downPull end local function onInitialized()