From 9027d2a21cfc6de2a920ad4051b4250130786c27 Mon Sep 17 00:00:00 2001 From: 1e99 Date: Tue, 17 Dec 2024 17:48:00 +0100 Subject: [PATCH] add javadoc to overriding mixin --- .../src/eu/e99/pixelchat/fabric/mixin/ChatScreenMixin.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mod-fabric/src/eu/e99/pixelchat/fabric/mixin/ChatScreenMixin.java b/mod-fabric/src/eu/e99/pixelchat/fabric/mixin/ChatScreenMixin.java index dc78c86..80bfe93 100644 --- a/mod-fabric/src/eu/e99/pixelchat/fabric/mixin/ChatScreenMixin.java +++ b/mod-fabric/src/eu/e99/pixelchat/fabric/mixin/ChatScreenMixin.java @@ -16,6 +16,10 @@ public abstract class ChatScreenMixin extends Screen { super(title); } + /** + * I override this because it doesn't really make a lot of sense to have 2 mods that perform the same thing when files are dragged in. + * If you have issues with this, please contact me. + */ @Override public void onFilesDropped(List paths) { for (Path path : paths) {