mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-18 09:35:48 +00:00
Fixed the issue where the Dino Tame settings would be reset when opening the server manager.
This commit is contained in:
parent
c663883c30
commit
412c24df8f
3 changed files with 32 additions and 10 deletions
|
|
@ -121,7 +121,7 @@ namespace ServerManagerTool.Lib.ViewModel
|
|||
{
|
||||
if (this.Any(d => d.ClassName == entry))
|
||||
{
|
||||
foreach (var dinoSetting in this.Where(d => d.ClassName == entry && !d.CanTame))
|
||||
foreach (var dinoSetting in this.Where(d => d.ClassName == entry && d.CanTame))
|
||||
{
|
||||
dinoSetting.CanTame = false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue