Makes Match[sticks/box] ECS, Makes Matchsticks ignite plasma
This commit is contained in:
@@ -8,22 +8,8 @@ namespace Content.Server.Light.Components
|
||||
// TODO make changes in icons when different threshold reached
|
||||
// e.g. different icons for 10% 50% 100%
|
||||
[RegisterComponent]
|
||||
public class MatchboxComponent : Component, IInteractUsing
|
||||
public class MatchboxComponent : Component
|
||||
{
|
||||
public override string Name => "Matchbox";
|
||||
|
||||
int IInteractUsing.Priority => 1;
|
||||
|
||||
async Task<bool> IInteractUsing.InteractUsing(InteractUsingEventArgs eventArgs)
|
||||
{
|
||||
if (eventArgs.Using.TryGetComponent<MatchstickComponent>(out var matchstick)
|
||||
&& matchstick.CurrentState == SharedBurningStates.Unlit)
|
||||
{
|
||||
matchstick.Ignite(eventArgs.User);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user