mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Machine, DatItem] SlotOptions are not Devices
This commit is contained in:
@@ -339,6 +339,27 @@ namespace SabreTools.Library.DatItems
|
||||
_machine.Devices = value;
|
||||
}
|
||||
}
|
||||
public List<string> SlotOptions
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_machine == null)
|
||||
{
|
||||
_machine = new Machine();
|
||||
}
|
||||
|
||||
return _machine.SlotOptions;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (_machine == null)
|
||||
{
|
||||
_machine = new Machine();
|
||||
}
|
||||
|
||||
_machine.SlotOptions = value;
|
||||
}
|
||||
}
|
||||
public MachineType MachineType
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user