Failed to compile: 'BasePlayer' does not contain a definition for 'gestureList' and no accessible extension method 'gestureList' accepting a first argument of type 'BasePlayer' could be found (are you missing a using directive or an assembly reference?) | Line: 78, Pos: 44
No longer working
Located on the line 78
replace this:
foreach (var gesture in player.gestureList.AllGestures)
for this:
for this:
foreach (var gesture in GestureCollection.Instance.AllGestures)
Thank you