align DISCOVERED event to naming convention

no need for custom event class
This commit is contained in:
xenohedron 2023-11-09 20:41:34 -05:00
parent af05e6f940
commit ded7eeeaa8
4 changed files with 4 additions and 18 deletions

View file

@ -1,14 +0,0 @@
package mage.game.events;
import mage.abilities.Ability;
import java.util.UUID;
/**
* @author Susucr
*/
public class DiscoverEvent extends GameEvent {
public DiscoverEvent(Ability source, UUID playerId, int amount) {
super(EventType.DISCOVER, null, source, playerId, amount, false);
}
}

View file

@ -539,7 +539,7 @@ public class GameEvent implements Serializable {
amount discover value
flag not used for this event
*/
DISCOVER,
DISCOVERED,
//custom events
CUSTOM_EVENT
}