Mobile input fixes

This commit is contained in:
Anuken
2019-10-10 22:13:45 -04:00
parent 80a4e67ddf
commit 204332a76a
4 changed files with 38 additions and 11 deletions

View File

@@ -47,8 +47,7 @@ public class Mods implements Loadable{
}
/** @return the loaded mod found by class, or null if not found. */
public @Nullable
LoadedMod getMod(Class<? extends Mod> type){
public @Nullable LoadedMod getMod(Class<? extends Mod> type){
return loaded.find(l -> l.mod.getClass() == type);
}