mech air overhaul (#19140)
Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
@@ -406,7 +406,7 @@ public abstract class SharedMechSystem : EntitySystem
|
||||
/// <param name="toInsert"></param>
|
||||
/// <param name="component"></param>
|
||||
/// <returns>Whether or not the entity was inserted</returns>
|
||||
public virtual bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? component = null)
|
||||
public bool TryInsert(EntityUid uid, EntityUid? toInsert, MechComponent? component = null)
|
||||
{
|
||||
if (!Resolve(uid, ref component))
|
||||
return false;
|
||||
@@ -429,7 +429,7 @@ public abstract class SharedMechSystem : EntitySystem
|
||||
/// <param name="uid"></param>
|
||||
/// <param name="component"></param>
|
||||
/// <returns>Whether or not the pilot was ejected.</returns>
|
||||
public virtual bool TryEject(EntityUid uid, MechComponent? component = null)
|
||||
public bool TryEject(EntityUid uid, MechComponent? component = null)
|
||||
{
|
||||
if (!Resolve(uid, ref component))
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user