Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Suprcode/Emerald
Browse files Browse the repository at this point in the history
  • Loading branch information
Tai-rone committed Feb 11, 2021
2 parents 791bb18 + f6e2071 commit be78a9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Emerald/Assets/Prefab/Player/Player.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ BoxCollider:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8447126569678902544}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_IsTrigger: 1
m_Enabled: 0
serializedVersion: 2
m_Size: {x: 1, y: 1, z: 1}
Expand Down
2 changes: 1 addition & 1 deletion Emerald/Assets/Scripts/PlayerObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void UpdateCamera(float delta)

public override void SetAction()
{
if (this == GameManager.User.Player && GameScene.QueuedAction != null)
if (this == GameManager.User.Player && Time.time > GameManager.NextAction && GameScene.QueuedAction != null)
{
ActionFeed.Clear();
ActionFeed.Add(GameScene.QueuedAction);
Expand Down

0 comments on commit be78a9d

Please sign in to comment.