From 86e10c914c6c07bda78f6166e859fae6c0a649de Mon Sep 17 00:00:00 2001 From: timokoesters Date: Sat, 3 Aug 2019 22:27:48 +0200 Subject: [PATCH] Adjust xp gains --- server/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/lib.rs b/server/src/lib.rs index 47a00a6792..5e7c133b31 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -886,7 +886,7 @@ impl Server { // TODO: Discuss whether we should give EXP by Player Killing or not. attacker_stats.exp.change_by( entity_stats.health.maximum() as f64 / 10.0 - * entity_stats.level.level() as f64, + + entity_stats.level.level() as f64 * 10.0, ); } });