Skip to content

Commit

Permalink
Bump Config2Brigadier
Browse files Browse the repository at this point in the history
  • Loading branch information
samolego committed Jun 8, 2023
1 parent c54c0b4 commit c55c6a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,9 @@ public void tick() {
for(ServerPlayer player: players) {
// Filter them here (not use a predicate above)
// as we need the original list below
if(((ITaterzenEditor) player).getEditorMode() == ITaterzenEditor.EditorMode.MESSAGES || this.distanceTo(player) > config.messages.speakDistance)
if (((ITaterzenEditor) player).getEditorMode() == ITaterzenEditor.EditorMode.MESSAGES || this.distanceTo(player) > config.messages.speakDistance) {
continue;
}

ITaterzenPlayer pl = (ITaterzenPlayer) player;
int msgPos = pl.getLastMsgPos(this.getUUID());
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ loader_version=0.14.21

#Fabric api
fabric_version=0.83.0+1.20

#Forge
forge_version=44.1.5
enable_forge=false
Expand All @@ -17,5 +18,5 @@ maven_group=org.samo_lego
archives_base_name=taterzens
# Dependencies
disguiselib_version=1.3.3
c2b_version=1.2.4
c2b_version=1.2.5

0 comments on commit c55c6a5

Please sign in to comment.