Skip to content

Commit e76631e

Browse files
authored
Remove unclear sentence
1 parent 3e78b62 commit e76631e

File tree

1 file changed

+1
-1
lines changed
  • com.unity.netcode.gameobjects/Documentation~/terms-concepts

1 file changed

+1
-1
lines changed

com.unity.netcode.gameobjects/Documentation~/terms-concepts/ownership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ When requesting ownership of a NetworkObject using [`NetworkObject.RequestOwners
4646
| **Ownership status of NetworkObject** | **Response** | **Description** |
4747
|--------------------------|--------------|---------------------|
4848
| `OwnershipStatus.Transferable` | `OwnershipRequestStatus.RequestSent` | Ownership is transferred immediately, as long as a request isn't already in progress and the NetworkObject's ownership isn't locked. Ownership isn't locked after the transfer. |
49-
| `OwnershipStatus.RequestRequired` | `OwnershipRequestStatus.RequestSent` | Request granted, as long as a request isn't already in progress and the NetworkObject's ownership isn't locked. Ownership is locked after the request is granted. |
49+
| `OwnershipStatus.RequestRequired` | `OwnershipRequestStatus.RequestSent` | Request granted, as long as a request isn't already in progress and the NetworkObject's ownership isn't locked. |
5050
| `OwnershipStatus.RequestRequired` but `IsOwner` is `true`for the requesting client | `OwnershipRequestStatus.AlreadyOwner` | No action taken. The current client is already the owner. |
5151
| `OwnershipStatus.RequestRequired` but `IsOwnershipLocked` is `true` | `OwnershipRequestStatus.Locked` | Request denied. The current owner has locked ownership which means requests can't be made at this time. |
5252
| `OwnershipStatus.RequestRequired` but `IsRequestInProgress` is `true` | `OwnershipRequestStatus.RequestInProgress` | Request denied. A known request is already in progress. You can scan for ownership changes and try again after a specific period of time or no longer attempt to request ownership. |

0 commit comments

Comments
 (0)