Removes vending inventory desc and adds missing vending machine descriptions (#4493)

* Removes inventory descriptions

* Adds missing vending machine descriptions using inventory descriptions

* Woops missed a file
This commit is contained in:
Swept
2021-08-19 22:23:02 -07:00
committed by GitHub
parent 45030b22a3
commit d2edd1712d
29 changed files with 17 additions and 44 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
@@ -17,9 +17,6 @@ namespace Content.Shared.VendingMachines
[DataField("name")]
public string Name { get; } = string.Empty;
[DataField("description")]
public string Description { get; } = string.Empty;
[DataField("animationDuration")]
public double AnimationDuration { get; }