Skip to content

Commit

Permalink
chore: remove test input (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkilme authored May 31, 2024
1 parent 7523d5e commit ec6435f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Client/Assets/Scripts/Creatures/Alien.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ protected override void HandleInput()
if (CreatureState == Define.CreatureState.Damaged || CreatureState == Define.CreatureState.Interact || CreatureState == Define.CreatureState.Use)
return;

if (TestInputs())
return;
//if (TestInputs())
// return;

if (Input.GetKeyDown(KeyCode.F))
{
Expand Down
4 changes: 2 additions & 2 deletions Client/Assets/Scripts/Creatures/Crew.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ protected override void HandleInput()
if (CreatureState == Define.CreatureState.Damaged || CreatureState == Define.CreatureState.Dead)
return;

if (TestInputs())
return;
//if (TestInputs())
// return;

if (CreatureState == Define.CreatureState.Interact || CreatureState == Define.CreatureState.Use)
{
Expand Down

0 comments on commit ec6435f

Please sign in to comment.