Skip to content

Commit

Permalink
Use more sensible limits for chunk sending
Browse files Browse the repository at this point in the history
  • Loading branch information
kivattt committed Apr 14, 2024
1 parent e2a636b commit 1266dc5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ buildscript {
maven { url 'https://jitpack.io/' }
}
dependencies {
classpath('com.github.Fox2Code.FoxLoader:dev:1.2.38')
classpath('com.github.Fox2Code.FoxLoader:dev:1.2.43')
}
}

apply plugin: 'foxloader.dev'

version '1.7.4'
version '1.7.5'

foxloader {
// forceReload = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class KivaServerUtils extends Mod {
public static LinkedHashMap<String, String> nameColorChoicesNames = new LinkedHashMap<>();
public static LinkedHashMap<String, String> flagColorChoicesNames = new LinkedHashMap<>();
public static LinkedHashMap<String, String> pronounColorChoicesNames = new LinkedHashMap<>();
public static String version = "1.7.4";
public static String version = "1.7.5";
public static String KSUBroadcastPrefix = ChatColors.DARK_GRAY + "[" + ChatColors.GRAY + "KSU" + ChatColors.DARK_GRAY + "] " + ChatColors.RESET;

public static String handleWindowClickLatestPlayerUsername;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ public void onHandleFalling(double arg1, boolean arg3, CallbackInfo ci){

@ModifyConstant(method = "onUpdateEntity", constant = @Constant(intValue = 24))
private int removeChunkSendingLimits1(int value){
return Integer.MAX_VALUE;
return 200;
}

@ModifyConstant(method = "onUpdateEntity", constant = @Constant(intValue = 40))
private int removeChunkSendingLimits2(int value){
return Integer.MAX_VALUE;
return 100;
}

// Scrapped code to add nicknames to death msgs, this might come in a later update to KivaServerUtils
Expand Down

0 comments on commit 1266dc5

Please sign in to comment.