Skip to content

Commit

Permalink
updated to 20w19a
Browse files Browse the repository at this point in the history
  • Loading branch information
juliand665 committed May 9, 2020
1 parent 7be0541 commit 196380f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
16 changes: 7 additions & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,19 @@
org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=20w17a
yarn_mappings=20w17a+build.1:v2
# check these on https://modmuss50.me/fabric.html
minecraft_version=20w19a
yarn_mappings=20w19a+build.6:v2
loader_version=0.8.2+build.194
fabric_version=0.10.7+build.344-1.16

# Mod Properties
mod_version = 1.1.2
mod_version = 1.1.3
maven_group = juliand665
archives_base_name = dynamic-fps

# Dependencies
# https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api/
fabric_version=0.6.2+build.327-1.16

developer_mode_version=1.0.15
mod_menu_version=1.8.5+build.23
#developer_mode_version=1.0.15
#mod_menu_version=1.8.5+build.23

findbugs_version=3.0.2
2 changes: 1 addition & 1 deletion src/main/java/dynamicfps/HudInfoRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void onHudRender(MatrixStack matrixStack, float delta) {

String textToRender = I18n.translate("gui." + DynamicFPSMod.MOD_ID + ".hud.reducing");
int windowWidth = client.getWindow().getScaledWidth();
int stringWidth = textRenderer.getStringWidth(textToRender);
int stringWidth = textRenderer.getWidth(textToRender);
textRenderer.drawWithShadow(
matrixStack,
textToRender,
Expand Down

0 comments on commit 196380f

Please sign in to comment.