Update ComboCounterMod.java

This commit is contained in:
kirillsaint 2024-01-15 19:28:24 +06:00 committed by GitHub
parent 6fa9546da4
commit 716841c7f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class ComboCounterMod extends HudMod {
if(combo == 0) {
return "No " + getPostText();
} else {
return combo + getPostText();
return combo + " " + getPostText();
}
}