@@ -289,12 +289,12 @@ namespace Content.Server.Mind
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Removes an objective to this mind.
|
/// Removes an objective from this mind.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>Returns true if the removal succeeded.</returns>
|
/// <returns>Returns true if the removal succeeded.</returns>
|
||||||
public bool TryRemoveObjective(int index)
|
public bool TryRemoveObjective(int index)
|
||||||
{
|
{
|
||||||
if (_objectives.Count >= index) return false;
|
if (index < 0 || index >= _objectives.Count) return false;
|
||||||
|
|
||||||
var objective = _objectives[index];
|
var objective = _objectives[index];
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ namespace Content.Server.Objectives.Commands
|
|||||||
}
|
}
|
||||||
for (var i = 0; i < objectives.Count; i++)
|
for (var i = 0; i < objectives.Count; i++)
|
||||||
{
|
{
|
||||||
shell.WriteLine($"- [{i + 1}] {objectives[i].Conditions[0].Title}");
|
shell.WriteLine($"- [{i}] {objectives[i].Conditions[0].Title}");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user