From 64a0e2898da8c061be95db4a6b5957cdab6c8f8e Mon Sep 17 00:00:00 2001 From: darkk1138 Date: Mon, 9 Dec 2013 23:30:16 +0100 Subject: [PATCH] correct xp, still not right though --- src/services/EntertainmentService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/EntertainmentService.java b/src/services/EntertainmentService.java index acaf3c71..db255217 100644 --- a/src/services/EntertainmentService.java +++ b/src/services/EntertainmentService.java @@ -320,7 +320,7 @@ public class EntertainmentService implements INetworkDispatch { return; } - int floXP = (int)( (float) p.getFlourishXpMod() / 6.0f); + int floXP = p.getFlourishXpMod(); int floCount = entertainer.getFlourishCount(); int XP = ((floCount > 2) ? 2 : floCount) * floXP;