Skip to content

Commit

Permalink
spellcheck dictionary update - remove "armour" and "initialise" (#575)
Browse files Browse the repository at this point in the history
dictionary update - remove "armour" and "initialise"
  • Loading branch information
ix0rai authored Apr 3, 2024
1 parent 6384752 commit e7a8095
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public class DownloadDictionaryFileTask extends DefaultMappingsTask {
public static final String TASK_NAME = "downloadDictionaryFile";

public static final String REVISION = "df0235679d00423d06636a9c1bf0120055ca232a";
public static final String REVISION = "2093ffe06086bbb1dfe35428975dbbc3248aa89f";
public static final String DEFAULT_DICTIONARY_FILE = "https://raw.githubusercontent.com/ix0rai/qm-base-allowed-wordlist/" + REVISION + "/allowed_english_words.txt";
@OutputFile
private final File output;
Expand Down

1 comment on commit e7a8095

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With commit e7a8095, 1 file(s) were updated with 2 line(s) added and 2 removed compared to the latest Quilt Mappings version.

View the diff here:
diff -bur namedTargetSrc/net/minecraft/world/RegistryWorldView.java namedSrc/net/minecraft/world/RegistryWorldView.java
--- namedTargetSrc/net/minecraft/world/RegistryWorldView.java	2024-04-03 02:48:01.919659545 +0000
+++ namedSrc/net/minecraft/world/RegistryWorldView.java	2024-04-03 02:46:48.951493067 +0000
@@ -35,8 +35,8 @@
     * Mapping not found
     */
    @Override
-   default boolean doesNotIntersectEntities(@Nullable Entity entity, VoxelShape shape) {
-      return EntityView.super.doesNotIntersectEntities(entity, shape);
+   default boolean doesNotIntersectEntities(@Nullable Entity except, VoxelShape shape) {
+      return EntityView.super.doesNotIntersectEntities(except, shape);
    }
 
    /**

Please sign in to comment.