Skip to content

Commit

Permalink
fix LeavePos
Browse files Browse the repository at this point in the history
  • Loading branch information
TudbuT committed Dec 24, 2020
1 parent e259890 commit 7c8f0b3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/tudbut/mod/client/yac/YAC.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class YAC {
public static final String MODID = "yac";
public static final String NAME = "YAC Client";
public static final String VERSION = "vB1.0.0b";
public static final String VERSION = "vB1.0.0c";

public static Module[] modules ;
public static EntityPlayerSP player;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/tudbut/mod/client/yac/mods/LeavePos.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ public void onTick() {
"§c§l§c§lThe player §r" +
visiblePlayersLastTick[j].getName() +
"§c§l left at " +
(int) (vec.x * 100) / 100 + " " +
(int) (vec.y * 100) / 100 + " " +
(int) (vec.z * 100) / 100 + " " +
((int) (vec.x * 100)) / 100 + " " +
((int) (vec.y * 100)) / 100 + " " +
((int) (vec.z * 100)) / 100 + " " +
"!"
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "yac",
"name": "YAC Client",
"description": "",
"version": "vB1.0.0b",
"version": "vB1.0.0c",
"mcversion": "${mcversion}",
"url": "",
"updateUrl": "",
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
vB1.0.0b
vB1.0.0c

0 comments on commit 7c8f0b3

Please sign in to comment.