Skip to content

Commit

Permalink
- Addresses tests failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeryn99 committed Aug 10, 2024
1 parent 27411ac commit 803c5b1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Writerside/topics/Common-Events.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public interface Land {
```

### TARDIS Entry Event
#### `TARDIS_ENTRY_EVENT`
#### `TARDIS_ENTRY_EVENT` {id="tardis-entry-event_1"}
The `TARDIS_ENTRY_EVENT` is triggered when a living entity enters a TARDIS. It provides the `TardisLevelOperator`, `LivingEntity`, `TardisNavLocation` of the source, and `TardisNavLocation` of the destination.

```java
Expand All @@ -33,7 +33,7 @@ public interface TardisEntry {
```

### TARDIS Exit Event
#### `TARDIS_EXIT_EVENT`
#### `TARDIS_EXIT_EVENT` {id="tardis-exit-event_1"}
The `TARDIS_EXIT_EVENT` is triggered when a living entity exits a TARDIS. It provides the `TardisLevelOperator`, `LivingEntity`, `TardisNavLocation` of the source, and `TardisNavLocation` of the destination.

```java
Expand All @@ -43,7 +43,7 @@ public interface TardisExit {
```

### Door Closed Event
#### `DOOR_CLOSED_EVENT`
#### `DOOR_CLOSED_EVENT` {id="door-closed-event_1"}
The `DOOR_CLOSED_EVENT` is triggered when the TARDIS door is closed. It provides the `TardisLevelOperator`.

```java
Expand All @@ -53,7 +53,7 @@ public interface CloseDoor {
```

### Door Opened Event
#### `DOOR_OPENED_EVENT`
#### `DOOR_OPENED_EVENT` {id="door-opened-event_1"}
The `DOOR_OPENED_EVENT` is triggered when the TARDIS door is opened. It provides the `TardisLevelOperator`.

```java
Expand All @@ -63,7 +63,7 @@ public interface OpenDoor {
```

### Shell Change Event
#### `SHELL_CHANGE_EVENT`
#### `SHELL_CHANGE_EVENT` {id="shell-change-event_1"}
The `SHELL_CHANGE_EVENT` is triggered when the TARDIS changes its shell. It provides the `TardisLevelOperator`, `ResourceLocation` of the theme, and a boolean indicating if the shell change was caused by a TARDIS being set up from a root shell.

```java
Expand All @@ -73,7 +73,7 @@ public interface ShellChange {
```

### Desktop Change Event
#### `DESKTOP_CHANGE_EVENT`
#### `DESKTOP_CHANGE_EVENT` {id="desktop-change-event_1"}
The `DESKTOP_CHANGE_EVENT` is triggered when the TARDIS desktop is changed. It provides the `TardisLevelOperator`.

```java
Expand All @@ -83,7 +83,7 @@ public interface DesktopChangeEvent {
```

### TARDIS Crash Event
#### `TARDIS_CRASH_EVENT`
#### `TARDIS_CRASH_EVENT` {id="tardis-crash-event_1"}
The `TARDIS_CRASH_EVENT` is triggered when a TARDIS crashes. It provides the `TardisLevelOperator` and `TardisNavLocation` of the crash.

```java
Expand Down Expand Up @@ -113,7 +113,7 @@ public interface CanControlBeUsed {
```

### TARDIS Setup Event
#### `TARDIS_SETUP_EVENT`
#### `TARDIS_SETUP_EVENT` {id="tardis-setup-event_1"}
The `TARDIS_SETUP_EVENT` is triggered when a TARDIS is set up from a root shell. It provides the `TardisLevelOperator`.

```java
Expand All @@ -123,7 +123,7 @@ public interface TardisSetup {
```

### TARDIS Break Event
#### `TARDIS_BREAK_EVENT`
#### `TARDIS_BREAK_EVENT` {id="tardis-break-event_1"}
The `TARDIS_BREAK_EVENT` is triggered when a TARDIS breaks. It provides the `TardisLevelOperator` and `TardisNavLocation` of the break.

```java
Expand All @@ -133,7 +133,7 @@ public interface TardisBreak {
```

### TARDIS Repair Event
#### `TARDIS_REPAIR_EVENT`
#### `TARDIS_REPAIR_EVENT` {id="tardis-repair-event_1"}
The `TARDIS_REPAIR_EVENT` is triggered when a TARDIS is repaired. It provides the `TardisLevelOperator` and `TardisNavLocation` of the repair.

```java
Expand All @@ -143,7 +143,7 @@ public interface TardisRepair {
```

### TARDIS Dematerialize Event
#### `TARDIS_DEMATERIALIZE_EVENT`
#### `TARDIS_DEMATERIALIZE_EVENT` {id="tardis-dematerialize-event_1"}
The `TARDIS_DEMATERIALIZE_EVENT` is triggered when a TARDIS dematerializes. It provides the `TardisLevelOperator`.

```java
Expand All @@ -153,7 +153,7 @@ public interface TardisDematerialize {
```

### TARDIS Rematerialize Event
#### `TARDIS_REMATERIALIZE_EVENT`
#### `TARDIS_REMATERIALIZE_EVENT` {id="tardis-rematerialize-event_1"}
The `TARDIS_REMATERIALIZE_EVENT` is triggered when a TARDIS rematerializes. It provides the `TardisLevelOperator`.

```java
Expand Down

0 comments on commit 803c5b1

Please sign in to comment.