Commit 070f80b2 authored by ElderLich's avatar ElderLich

Bug Fix: Fix opponent hand shadows outside replay mode

Extends the opponent hand shadow fix to live duels, solo, and spectate so hidden opponent hand cards no longer cast the large shadow band on the field outside replay Free View.
parent 27529204
...@@ -1607,7 +1607,7 @@ namespace MDPro3 ...@@ -1607,7 +1607,7 @@ namespace MDPro3
if (model == null) if (model == null)
return; return;
var mode = CurrentReplayGodView && p.InLocation(CardLocation.Hand) && !p.InMyControl() var mode = p.InLocation(CardLocation.Hand) && !p.InMyControl()
? ShadowCastingMode.Off ? ShadowCastingMode.Off
: ShadowCastingMode.On; : ShadowCastingMode.On;
var cardModel = manager.GetElement<Transform>("CardModel"); var cardModel = manager.GetElement<Transform>("CardModel");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment