mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-13 14:48:34 +00:00
Fix #1260
This commit is contained in:
@ -838,6 +838,17 @@ public class LocalSession implements TextureHolder {
|
||||
}
|
||||
setClipboard(multi);
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensure the player's clipboard is closed. (will only do something with clipboard-on-disk)
|
||||
*/
|
||||
public void closeClipboard() {
|
||||
synchronized (clipboardLock) {
|
||||
if (this.clipboard != null) {
|
||||
this.clipboard.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
//FAWE end
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user