From 35c85979306d544185e3adfd10a31d0c3e068479 Mon Sep 17 00:00:00 2001 From: Beckam White <47697544+BJDubb@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:05:14 +1000 Subject: [PATCH] Update ENTITY/IsEntityAtCoord.md align enum convention with other natives Co-authored-by: Jacob Paulin <56453471+JayPaulinCodes@users.noreply.github.com> --- ENTITY/IsEntityAtCoord.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ENTITY/IsEntityAtCoord.md b/ENTITY/IsEntityAtCoord.md index 2fc3aa989..8b62d017b 100644 --- a/ENTITY/IsEntityAtCoord.md +++ b/ENTITY/IsEntityAtCoord.md @@ -12,11 +12,11 @@ Checks if the entity's root is located in the given area defined by a centre poi Specifying a non-zero transport mode will return false early if the entity does not meet the requirements of the transport mode. ```c -enum transportMode +enum eTransportMode { - TM_ANY, - TM_ON_FOOT, - TM_IN_VEHICLE, + TM_ANY = 0, + TM_ON_FOOT = 1, + TM_IN_VEHICLE = 2, } ```