Revert "[events] Implement Harvesting doubles event"

This reverts commit 097f87b431.
This commit is contained in:
RedSparr0w 2019-09-22 02:25:02 +12:00
parent 097f87b431
commit 86d6a60741

View file

@ -2,7 +2,6 @@ package org.crandor.game.content.skill.free.gather;
import org.crandor.ServerConstants;
import org.crandor.game.content.skill.Skills;
import org.crandor.game.events.GlobalEventManager;
import org.crandor.game.world.repository.Repository;
import org.crandor.game.world.update.flag.context.Animation;
@ -499,7 +498,7 @@ public enum SkillingResource {
* @return The rewardAmount.
*/
public int getRewardAmount() {
return GlobalEventManager.get().isActive("Harvesting doubles") ? rewardAmount * 2 : rewardAmount;
return rewardAmount;
}
/**