mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2025-01-04 07:28:17 +01:00
Fix AsyncSign empty lines
This commit is contained in:
parent
613f6bd5c0
commit
17d3e574fb
@ -28,7 +28,7 @@ public class AsyncSign extends AsyncBlockState implements Sign {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String fromJson(String jsonInput) {
|
private String fromJson(String jsonInput) {
|
||||||
if (jsonInput == null) return "";
|
if (jsonInput == null || jsonInput.isEmpty()) return "";
|
||||||
return FancyMessage.deserialize(jsonInput).toOldMessageFormat();
|
return FancyMessage.deserialize(jsonInput).toOldMessageFormat();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user