This commit is contained in:
Lilian Jónsdóttir 2020-09-13 00:56:50 -07:00
parent 3daaf971a5
commit 381922d133

View file

@ -22,7 +22,7 @@ local function buildFollowerList()
local f = {} local f = {}
-- build our followers list -- build our followers list
for friend in tes3.iterate(tes3.mobilePlayer.friendlyActors) do for friend in tes3.iterate(tes3.mobilePlayer.friendlyActors) do
if friend ~= tes3.player then -- ? why is the player friendly towards the player ? if friend ~= tes3.mobilePlayer then -- ? why is the player friendly towards the player ?
f[friend.object.id] = true f[friend.object.id] = true
log(common.logLevels.large, "%s is follower", friend.object.id) log(common.logLevels.large, "%s is follower", friend.object.id)
end end