Update Conditions authored by Ethan's avatar Ethan
...@@ -37,13 +37,13 @@ health: ...@@ -37,13 +37,13 @@ health:
``` ```
## Useful Conditions ## Useful Conditions
| Conditions | Description | | Conditions | Old Option Equivalent| Description |
| ------ | ----------- | | ------ | ------ | ----------- |
| `gamemode{gm=creative,spectator;m=false}` | This condition will be false when a player is in either creative or spectator mode. | false | | `gamemode{gm=creative,spectator;m=false}` | `HIDE_WHEN_GAMEMODE` | This condition will be false when a player is in either creative or spectator mode. |
| `bar-progress{v=0;oper=greater;m=true}` | This condition will be false when the bar is empty. | | `bar-progress{v=0;oper=greater;m=true}` | `HIDE_WHEN_EMPTY` | This condition will be false when the bar is empty. |
| `bar-progress{v=1;oper=less;m=true}` | This condition will be false when the bar is full. | | `bar-progress{v=1;oper=less;m=true}` | `HIDE_WHEN_FULL` | This condition will be false when the bar is full. |
| `mounted{m=false}` | This condition will be false when the player is mounted. | | `mounted{m=false}` | `HIDE_WHEN_MOUNTED` | This condition will be false when the player is mounted. |
| `bar-inactive{m=true}` | This condition will be false when the bar is inactive. | | `bar-inactive{m=true}` | `HIDE_WHEN_INACTIVE` | This condition will be false when the bar is inactive. |
## Conditions ## Conditions
| Conditions | Description | | Conditions | Description |
... ...
......