Fix build, remove clean in gradle command

This commit is contained in:
creeper123123321 2019-04-21 10:04:16 -03:00
parent 16b01076d1
commit 16f5c6d15a
No known key found for this signature in database
GPG Key ID: 0AC57D54786721D1

View File

@ -56,7 +56,7 @@ public class NMSCommandSender implements ViaCommandSender {
((ServerCommandSource) source).sendFeedback(TextComponent.Serializer.fromJsonString(ChatRewriter.legacyTextToJson(s)), false);
} else if (FabricLoader.getInstance().getEnvironmentType() == EnvType.CLIENT && source instanceof ClientCommandSource) {
MinecraftClient.getInstance().player
.appendCommandFeedback(TextComponent.Serializer.fromJsonString(ChatRewriter.legacyTextToJson(s)));
.sendMessage(TextComponent.Serializer.fromJsonString(ChatRewriter.legacyTextToJson(s)));
}
}