darkbluefirefly
Community Developer
- Joined
- Nov 8, 2013
- Messages
- 1,927
Very weird, what the error means is
inside QuestPluginSettings.cs
There should be a code block
Is yours the same?
Anyone else having the issues?
Error setting value to 'Difficulty' on 'QuestPlugin.QuestPluginSettings'
inside QuestPluginSettings.cs
There should be a code block
Code:
public string Difficulty
{
get { return _difficulty; }
set
{
if (value.Equals(_difficulty))
{
return;
}
_difficulty = value;
NotifyPropertyChanged(() => Difficulty);
}
}
Is yours the same?
Anyone else having the issues?