mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- Added Slapshot's fix which prevents the human from playing multiple lands when dev mode is off.
This commit is contained in:
@@ -1738,7 +1738,7 @@ public abstract class Player extends GameEntity {
|
||||
public final boolean canPlayLand() {
|
||||
|
||||
final ViewTopLevel t = ((GuiTopLevel) AllZone.getDisplay()).getController().getMatchController().getView();
|
||||
if (t.getTabberController().getView().getLblUnlimitedLands().getEnabled() && this.isHuman()) {
|
||||
if (t.getTabberController().getView().getLblUnlimitedLands().getEnabled() && this.isHuman() && Constant.Runtime.DEV_MODE[0]) {
|
||||
return Phase.canCastSorcery(this);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user