Current Known Bugs list
by mtgrares
Moderators: timmermac, Blacksmith, KrazyTheFox, Agetian, friarsol, CCGHQ Admins
Re: Current Known Bugs list
by DennisBergkamp » 17 Nov 2009, 17:45
Doh, the culprit is the Wojek Embermage, I'll see if I can add some Protection checks to it.
EDIT: and you're right, it currently doesn't work for multicolored cards (it says so in a comment in the code
), I'll fix this as well.
EDIT: and you're right, it currently doesn't work for multicolored cards (it says so in a comment in the code

-
DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by Almost_Clever » 17 Nov 2009, 19:58
Erroneous fun with Memnarch:
1. If you use the second ability of Memnarch on a Meadowboon(it doesn't matter if you already control the Meadowboon or not), all of your creatures get a +1/+1 counter.
2. If you steal a blocking creature with Memnarch, the creature continues to block (it should be removed from combat). If the attacking creature happened to be a Master of Etherium, the blocking creature is pumped up (correctly) prior to damaging the Master of Etherium (which was also correctly pumped up).
1. If you use the second ability of Memnarch on a Meadowboon(it doesn't matter if you already control the Meadowboon or not), all of your creatures get a +1/+1 counter.
2. If you steal a blocking creature with Memnarch, the creature continues to block (it should be removed from combat). If the attacking creature happened to be a Master of Etherium, the blocking creature is pumped up (correctly) prior to damaging the Master of Etherium (which was also correctly pumped up).
A woman came up to me and said / "I'd like to poison your mind / With wrong ideas that appeal to you / Though I am not unkind."
-
Almost_Clever - Tester
- Posts: 345
- Joined: 15 Jan 2009, 01:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by freestorageaccount » 18 Nov 2009, 01:21
Here's another coming-into-play bug: I remove the opponent's Angel of Despair with Oblivion Ring. He then activates Nevinyrral's Disk, returning the Angel to play while I control no permanents except for lands. As with Archon of Justice, this causes an error, but this time I am able to proceed by trying to cast an Instant from my hand then cancelling when the payment message appears. The next turn I try again with another Oblivion Ring, but the Angel apparently resists it this time and remains in play! What's the source of this strange behaviour?
-- freestorageaccount (= accurate forge notes) This is not a subliminal message. At least for the prosilver theme.
The Great Wall of Bugs. Gando, you will not be forgotten.
And a chip off the old block.
The Great Wall of Bugs. Gando, you will not be forgotten.
And a chip off the old block.
-
freestorageaccount - Posts: 246
- Joined: 21 Sep 2009, 01:42
- Location: Hilbert's Hotel
- Has thanked: 1 time
- Been thanked: 0 time
Re: Current Known Bugs list
by Chris H. » 18 Nov 2009, 13:45
The computer is having a problem using Survival of the Fittest.
The computer Pays G and fails to discard a creature and fails to find a creature card in it's library to be placed in it's hand. This process continues until the computer runs out of green mana.
The computer Pays G and fails to discard a creature and fails to find a creature card in it's library to be placed in it's hand. This process continues until the computer runs out of green mana.
-
Chris H. - Forge Moderator
- Posts: 6320
- Joined: 04 Nov 2008, 12:11
- Location: Mac OS X Yosemite
- Has thanked: 644 times
- Been thanked: 643 times
Re: Current Known Bugs list
by DennisBergkamp » 18 Nov 2009, 17:21
Ahh, as it turns out, the AI part was never coded. For now I'll just add a canPlayAI(){ return false;}.Chris H. wrote:The computer is having a problem using Survival of the Fittest.
The computer Pays G and fails to discard a creature and fails to find a creature card in it's library to be placed in it's hand. This process continues until the computer runs out of green mana.
-
DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by Chris H. » 19 Nov 2009, 00:19
The Loxodon Hierarch no longer has the code for it's ability: "G W, Sacrifice Loxodon Hierarch: Regenerate each creature you control".
I think that this card used to be contained in a separate code block and was then at a latter time combined with a group of other cards that share "When " CardName " comes into play, you gain 4 life".
I am guessing here, but when these cards were combined into one code block I suspect that the regeneration code was accidentally left out.
I think that this card used to be contained in a separate code block and was then at a latter time combined with a group of other cards that share "When " CardName " comes into play, you gain 4 life".
I am guessing here, but when these cards were combined into one code block I suspect that the regeneration code was accidentally left out.
-
Chris H. - Forge Moderator
- Posts: 6320
- Joined: 04 Nov 2008, 12:11
- Location: Mac OS X Yosemite
- Has thanked: 644 times
- Been thanked: 643 times
Re: Current Known Bugs list
by freestorageaccount » 20 Nov 2009, 02:30
New bug I found while playing around: with Mass Hysteria or a similar card in effect, tokens from Jedit Ojanen of Efrava can attack when they're created, even though they really come into play after attackers have been declared (but still within the 'declare attackers' step)!
-- freestorageaccount (= accurate forge notes) This is not a subliminal message. At least for the prosilver theme.
The Great Wall of Bugs. Gando, you will not be forgotten.
And a chip off the old block.
The Great Wall of Bugs. Gando, you will not be forgotten.
And a chip off the old block.
-
freestorageaccount - Posts: 246
- Joined: 21 Sep 2009, 01:42
- Location: Hilbert's Hotel
- Has thanked: 1 time
- Been thanked: 0 time
Re: Current Known Bugs list
by DennisBergkamp » 20 Nov 2009, 19:47
Ah, the reason Loxodon Hierarch doesn't work anymore is because I changed a bunch of "if" blocks into "else if" blocks. I just fixed this.
And you're right about Jedit Ojanen of Efrava, I'll see if this is fixable (probably tricky).
And you're right about Jedit Ojanen of Efrava, I'll see if this is fixable (probably tricky).
-
DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by silly freak » 20 Nov 2009, 23:18
the clean fix is that the ability triggers when jedit attacks, but is only put on the stack when attacking is done, meaning that the tokens come into play after declaring attackers. maybe it's doable to delay triggered abilities until a player receives priority, i don't know...
___
where's the "trust me, that will work!" switch for the compiler?
Laterna Magica - blog, forum, project, 2010/09/06 release!
where's the "trust me, that will work!" switch for the compiler?
Laterna Magica - blog, forum, project, 2010/09/06 release!
- silly freak
- DEVELOPER
- Posts: 598
- Joined: 26 Mar 2009, 07:18
- Location: Vienna, Austria
- Has thanked: 93 times
- Been thanked: 25 times
Re: Current Known Bugs list
by DennisBergkamp » 21 Nov 2009, 00:40
Yeah I was thinking something along those same lines...
By the way, zerker, you said you got Mudbutton Torchrunner to work with Goblin Grenade? For some reason (using the latest SVN) I still can't seem to do this.
By the way, zerker, you said you got Mudbutton Torchrunner to work with Goblin Grenade? For some reason (using the latest SVN) I still can't seem to do this.
-
DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by zerker2000 » 21 Nov 2009, 01:29
Interesting, it should push the Goblin Grenade as a "delayed input" ability on stack, and ask for input targeting for Mudbutton Torchrunner(and then for the grenade).
O forest, hold thy wand'ring son
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
- zerker2000
- Programmer
- Posts: 569
- Joined: 09 May 2009, 21:40
- Location: South Pasadena, CA
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by freestorageaccount » 21 Nov 2009, 01:36
Funeral Charm doesn't have the swampwalk option.
EDIT: Corrupt appears not to do anything any longer.
EDIT2: This is disappointing: I cast Animate Dead to bring up the computer's Sower of Temptation, but I don't get the effect. Which card (or both) is (are) causing this?
EDIT: Corrupt appears not to do anything any longer.
EDIT2: This is disappointing: I cast Animate Dead to bring up the computer's Sower of Temptation, but I don't get the effect. Which card (or both) is (are) causing this?
Last edited by freestorageaccount on 21 Nov 2009, 06:12, edited 1 time in total.
-- freestorageaccount (= accurate forge notes) This is not a subliminal message. At least for the prosilver theme.
The Great Wall of Bugs. Gando, you will not be forgotten.
And a chip off the old block.
The Great Wall of Bugs. Gando, you will not be forgotten.
And a chip off the old block.
-
freestorageaccount - Posts: 246
- Joined: 21 Sep 2009, 01:42
- Location: Hilbert's Hotel
- Has thanked: 1 time
- Been thanked: 0 time
Re: Current Known Bugs list
by zerker2000 » 21 Nov 2009, 02:01
Most interesting, I was able to sacrifice four torchrunners to one grenade for 20 damage
.
EDIT: I once again claim I got inputs working
.

EDIT: I once again claim I got inputs working

O forest, hold thy wand'ring son
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
- zerker2000
- Programmer
- Posts: 569
- Joined: 09 May 2009, 21:40
- Location: South Pasadena, CA
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by DennisBergkamp » 21 Nov 2009, 02:44
Wowzerker2000 wrote:Most interesting, I was able to sacrifice four torchrunners to one grenade for 20 damage.
EDIT: I once again claim I got inputs working.

EDIT: nice, yes it does work! Even though it's slightly confusing, but I think it's good enough

-
DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: Current Known Bugs list
by Mr.Chaos » 21 Nov 2009, 08:29
That is not a bug! That is a feature! One we should treasure above all else!zerker2000 wrote:Most interesting, I was able to sacrifice four torchrunners to one grenade for 20 damage.

Although, it is a bugged feature because the actual damage should have been 32.
4 Mudbutton Torchrunner doing 3 damage each upon hitting the graveyard. 12 damage on top of the 20 from the grenade.
](./images/smilies/eusa_wall.gif)

- Mr.Chaos
- Tester
- Posts: 625
- Joined: 06 Sep 2008, 08:15
- Has thanked: 0 time
- Been thanked: 0 time
Who is online
Users browsing this forum: No registered users and 33 guests