summaryrefslogtreecommitdiffstats
path: root/src/Entities/Player.h
diff options
context:
space:
mode:
authorLogicParrot <LogicParrot@users.noreply.github.com>2017-08-24 14:53:57 +0200
committerLogicParrot <LogicParrot@users.noreply.github.com>2017-08-24 14:53:57 +0200
commit6219d4af217e367336f6a4f7d0a85921c823c161 (patch)
tree1e45576ca1b349456a23b764c80f43d11a778436 /src/Entities/Player.h
parentwhitespace cleanup (diff)
parentUse ref instead of pointer (diff)
downloadcuberite-6219d4af217e367336f6a4f7d0a85921c823c161.tar
cuberite-6219d4af217e367336f6a4f7d0a85921c823c161.tar.gz
cuberite-6219d4af217e367336f6a4f7d0a85921c823c161.tar.bz2
cuberite-6219d4af217e367336f6a4f7d0a85921c823c161.tar.lz
cuberite-6219d4af217e367336f6a4f7d0a85921c823c161.tar.xz
cuberite-6219d4af217e367336f6a4f7d0a85921c823c161.tar.zst
cuberite-6219d4af217e367336f6a4f7d0a85921c823c161.zip
Diffstat (limited to '')
-rw-r--r--src/Entities/Player.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Entities/Player.h b/src/Entities/Player.h
index 8c21c25d6..5b0aa84a8 100644
--- a/src/Entities/Player.h
+++ b/src/Entities/Player.h
@@ -97,12 +97,12 @@ public:
float GetXpPercentage(void);
/** Calculates the amount of XP needed for a given level
- Ref: http://minecraft.gamepedia.com/XP
+ Ref: https://minecraft.gamepedia.com/XP
*/
static int XpForLevel(int a_Level);
/** Inverse of XpForLevel
- Ref: http://minecraft.gamepedia.com/XP
+ Ref: https://minecraft.gamepedia.com/XP
values are as per this with pre-calculations
*/
static int CalcLevelFromXp(int a_CurrentXp);