Hi Ruleset Devs,

I found a non-critical issue today with CoreRPG that I'd like to report. I confirmed it with no extensions enabled and a normal/pak CoreRPG ruleset on the latest FGU (including Test channel).
There's a CoreRPG bug when client/player (not the host) without an identity selected (no character selected) drags an effect to an actor in the Combat Tracker:

[ERROR] Script execution error: [string "scripts/manager_action_effect.lua"]:97: attempt to concatenate a nil value


Here's the fix I applied to my CoreRPG\scripts\manager_action_effect.lua file that seems to be ok... change line 96 from:

else

to:

elseif User.getCurrentIdentity() then


With that change, I no longer receive an error when dragging an effect to a CT actor from a client without an identity selected.

Problem exists on FGC also, fix is the same (including line numbers) on both.

Thanks,
Justin