Skip to content

Commit 62d6b92

Browse files
authored
Update writing-a-multithreaded-plugin.md
1 parent 118a130 commit 62d6b92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

shreddedpaper/writing-a-multithreaded-plugin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ During most events and commands, you will be on the thread of the player/entity/
140140

141141
### Use teleportAsync
142142

143-
When teleporting entities or players, be sure to do:
143+
When teleporting entities or players, be sure to do this:
144144

145145
```java
146146
entity.teleportAsync(location);
147147
```
148148

149-
Not this:
149+
Instead of this:
150150

151151
```java
152152
entity.teleport(location); // Do not do this

0 commit comments

Comments
 (0)