* Fixed a problem that Emblems created by permanents where its owner left the game caused errors in clients. Some handling cganges of emblems.

This commit is contained in:
LevelX2 2016-12-27 16:00:22 +01:00
parent 81caed134f
commit 8075ea2e50
56 changed files with 894 additions and 850 deletions

View file

@ -24,24 +24,26 @@
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
*/
package mage.game.command;
import java.util.UUID;
import mage.MageObject;
import java.util.UUID;
/**
*
* @author Viserion, nantuko
*/
*
* @author Viserion, nantuko
*/
public interface CommandObject extends MageObject {
UUID getSourceId();
UUID getControllerId();
void assignNewId();
MageObject getSourceObject();
@Override
CommandObject copy();
}