It is currently 18 Aug 2025, 09:37
   
Text Size

Current Known Bugs list

Moderators: timmermac, Blacksmith, KrazyTheFox, Agetian, friarsol, CCGHQ Admins

Re: Current Known Bugs list

Postby Chris H. » 05 Aug 2011, 16:49

jeffwadsworth wrote:The script is wrong. I will look for a workaround, but I do not think it is scriptable yet.
`
I tried Count$EnchantedManaCost but it did not work, it was worth a try. :mrgreen:
User avatar
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

Postby Bundy » 05 Aug 2011, 17:10

friarsol wrote:Bundy, this is expected behavior. So you should try being more careful. Triggers that Target need those Targets in place before the Trigger goes on the stack. You don't pay for Triggers until they resolve. In the case of Rith, it's the "Up to" specifically that is getting you in trouble. You are choosing 0 targets, which is "Up to 2" and once it resolves you've targeted a legal amount of Cards and are asked to pay for the trigger.
That's true.
Reading back what i wrote i see i'm not really specific about what i wanted to write ...
For example, at this moment i attack with Vorosh, the Hunter. When i deal damage with Vorosh, i first get a window that asks me if i want to use the triggered ability or not. With some other dragons this window does not appear and the ability just starts. Maybe all of the legendary dragons can get a window that lets you choose if you want to trigger the ability or not?
(NOTE this is not a bug report at all, but just someone asking for a reminder window because he always presses the space bar to fast :lol: )
Bundy
 
Posts: 348
Joined: 17 Dec 2010, 17:32
Location: The netherlands
Has thanked: 23 times
Been thanked: 3 times

Re: Current Known Bugs list

Postby jeffwadsworth » 05 Aug 2011, 17:18

Eowin wrote:Hi Developers,
I have a Griffin Rider in Play and play an Adaptive Automaton as a Griffin. The Rider in Play doesn't get the +3/+3. Than I play another Griffin Rider and this one gets the +3/+3...
king regards
Good catch. Fixed in Git. Thanks.
jeffwadsworth
Super Tester Elite
 
Posts: 1172
Joined: 20 Oct 2010, 04:47
Location: USA
Has thanked: 287 times
Been thanked: 70 times

Re: Current Known Bugs list

Postby jeffwadsworth » 05 Aug 2011, 17:19

Chris H. wrote:
jeffwadsworth wrote:The script is wrong. I will look for a workaround, but I do not think it is scriptable yet.
`
I tried Count$EnchantedManaCost but it did not work, it was worth a try. :mrgreen:
Yeah, that is a cool card. I am going to experiment with it.
jeffwadsworth
Super Tester Elite
 
Posts: 1172
Joined: 20 Oct 2010, 04:47
Location: USA
Has thanked: 287 times
Been thanked: 70 times

Re: Current Known Bugs list

Postby friarsol » 05 Aug 2011, 17:21

Bundy wrote:Reading back what i wrote i see i'm not really specific about what i wanted to write ...
For example, at this moment i attack with Vorosh, the Hunter. When i deal damage with Vorosh, i first get a window that asks me if i want to use the triggered ability or not. With some other dragons this window does not appear and the ability just starts. Maybe all of the legendary dragons can get a window that lets you choose if you want to trigger the ability or not?
Which other Dragons? I didn't play during that time and am not familiar with their names. My best guess is that the "other" Dragons are hardcoded, (as opposed to scripted) which is why they don't do things in a standard manner. We can look into if the others are possible to be scripted or somehow use more standard behavior.
friarsol
Global Moderator
 
Posts: 7593
Joined: 15 May 2010, 04:20
Has thanked: 243 times
Been thanked: 965 times

Re: Current Known Bugs list

Postby Bundy » 05 Aug 2011, 18:49

friarsol wrote:Which other Dragons? I didn't play during that time and am not familiar with their names. My best guess is that the "other" Dragons are hardcoded, (as opposed to scripted) which is why they don't do things in a standard manner.
Well, i don't know anything about programming, but i tried all the dragons in my deck. I thought most of them had the menu that ask if you want to activate the ability, but it seems the other way around. only 2 of the 6 dragons have this menu.
The 2 that ask before activating are: Oros, the Avenger and Vorosh, the Hunter.
The other 4 that activate without asking to trigger are: Treva, the Renewer, Rith, the Awakener, Teneb, the Harvester and Numot, the Devastator.
Bundy
 
Posts: 348
Joined: 17 Dec 2010, 17:32
Location: The netherlands
Has thanked: 23 times
Been thanked: 3 times

Re: Current Known Bugs list

Postby jeffwadsworth » 05 Aug 2011, 19:11

Bundy wrote:
friarsol wrote:Which other Dragons? I didn't play during that time and am not familiar with their names. My best guess is that the "other" Dragons are hardcoded, (as opposed to scripted) which is why they don't do things in a standard manner.
Well, i don't know anything about programming, but i tried all the dragons in my deck. I thought most of them had the menu that ask if you want to activate the ability, but it seems the other way around. only 2 of the 6 dragons have this menu.
The 2 that ask before activating are: Oros, the Avenger and Vorosh, the Hunter.
The other 4 that activate without asking to trigger are: Treva, the Renewer, Rith, the Awakener, Teneb, the Harvester and Numot, the Devastator.
Teneb and Numot are fixed. The other 2 are hard-coded. The follow script for Treva the Renewer would probably be the way to handle it...though it does not work at the moment.

| Open
Name:Treva, the Renewer
ManaCost:3 G W U
Types:Legendary Creature Dragon
Text:no text
PT:6/6
K:Flying
T:Mode$ DamageDone | ValidSource$ Card.Self | ValidTarget$ Player | CombatDamage$ True | OptionalDecider$ You | Execute$ TrigChooseColor | TriggerDescription$ Whenever CARDNAME deals combat damage to a player, you may pay 2 W. If you do, choose a color. You gain 1 life for each permanent of that color.
SVar:TrigChooseColor:AB$ChooseColor | Cost$ 2 W | Defined$ You | SubAbility$ DBGainLife
SVar:DBGainLife:DB$GainLife | LifeAmount$ X
SVar:X:Count$Valid Permanent.ChosenColor
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/treva_the_renewer.jpg
SetInfo:INV|Rare|http://magiccards.info/scans/en/in/280.jpg
End
jeffwadsworth
Super Tester Elite
 
Posts: 1172
Joined: 20 Oct 2010, 04:47
Location: USA
Has thanked: 287 times
Been thanked: 70 times

Re: Current Known Bugs list

Postby Accountancy » 06 Aug 2011, 03:57

. Blind-Spot Giant is attacking and blocking on it's own.
Last edited by Chris H. on 06 Aug 2011, 10:33, edited 1 time in total.
Reason: Mouse-over
Accountancy
 
Posts: 230
Joined: 14 Aug 2009, 12:39
Has thanked: 22 times
Been thanked: 2 times

Re: Current Known Bugs list

Postby s1886x » 06 Aug 2011, 04:01

. Wings of Velis Vel casts as soon as i tap an island but it should cost 2 mana
Last edited by Chris H. on 06 Aug 2011, 10:33, edited 1 time in total.
Reason: Mouse-over
s1886x
 
Posts: 141
Joined: 14 Jun 2010, 01:07
Has thanked: 0 time
Been thanked: 0 time

Re: Current Known Bugs list

Postby s1886x » 06 Aug 2011, 04:29

sometimes Acorn Harvest casts, sometimes it doesn't. i don't know what the distinction is.
Last edited by Chris H. on 06 Aug 2011, 10:34, edited 1 time in total.
Reason: Mouse-over
s1886x
 
Posts: 141
Joined: 14 Jun 2010, 01:07
Has thanked: 0 time
Been thanked: 0 time

Re: Current Known Bugs list

Postby Bundy » 06 Aug 2011, 11:10

jeffwadsworth wrote:Teneb and Numot are fixed.
Thanks for the quick service :D

And another thing i encountered.
I use the ability of Jhoira of the Ghitu. The selected card goes to exile, but it never came back. After 4 turns it still is in exile. Is there a bug in Jhoira of the Ghitu or do i have to do something to get the card back? I tried it with a creature and an artifact card, but i could not get it to work. I did not see the mention of any time counters on these cards while they are in exile.
Bundy
 
Posts: 348
Joined: 17 Dec 2010, 17:32
Location: The netherlands
Has thanked: 23 times
Been thanked: 3 times

Re: Current Known Bugs list

Postby s1886x » 06 Aug 2011, 13:20

i set my games on random vs. random and i often forget the names of the decks. i don't know if there's a way to check which deck my opponent and i are playing during the game, but i wish there was. i've included all information that i could below. it looks like the computer was trying to use some counter spell on my Battlegrace Angel:

An error has occurred. You can copy/paste this message or save it to a file.
Please report this, plus what you tried to do, to:
viewforum.php?f=26
If you don't want to register an account, you can mail it directly to
mtgerror@yahoo.com


null


Version:
Forge -- official beta: $Date: 2011-01-06 11:34:48 -0500 (Thu, 06 Jan 2011) $, SVN revision: $Revision: 4891 $

OS: Windows 7 Version: 6.1 Architecture: x86

Java Version: 1.6.0_22 Vendor: Sun Microsystems Inc.

Detailed error trace:
java.lang.NullPointerException
at forge.card.spellability.Cost_Payment.payComputerCosts(Unknown Source)
at forge.ComputerUtil.playCounterSpell(Unknown Source)
at forge.ComputerAI_General.stackResponse(Unknown Source)
at forge.ComputerAI_General.stack_not_empty(Unknown Source)
at forge.gui.input.InputControl.updateInput(Unknown Source)
at forge.GuiInput.update(Unknown Source)
at java.util.Observable.notifyObservers(Unknown Source)
at java.util.Observable.notifyObservers(Unknown Source)
at forge.MyObservable.updateObservers(Unknown Source)
at forge.gui.input.InputControl.resetInput(Unknown Source)
at forge.Phase.passPriority(Unknown Source)
at forge.gui.input.Input_PassPriority.selectButtonOK(Unknown Source)
at forge.GuiInput.selectButtonOK(Unknown Source)
at forge.GuiDisplay4.okButtonActionPerformed(Unknown Source)
at forge.GuiDisplay4.access$3(Unknown Source)
at forge.GuiDisplay4$25.actionPerformed(Unknown Source)
at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
at javax.swing.plaf.basic.BasicButtonListener$Actions.actionPerformed(Unknown Source)
at javax.swing.SwingUtilities.notifyAction(Unknown Source)
at javax.swing.JComponent.processKeyBinding(Unknown Source)
at javax.swing.JComponent.processKeyBindings(Unknown Source)
at javax.swing.JComponent.processKeyEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
_______________________________________________________________________

stack report:

An error has occurred. You can copy/paste this message or save it to a file.
Please report this, plus what you tried to do, to:
viewforum.php?f=26
If you don't want to register an account, you can mail it directly to
mtgerror@yahoo.com


You requested a full error report


Version:
Forge -- official beta: $Date: 2011-01-06 11:34:48 -0500 (Thu, 06 Jan 2011) $, SVN revision: $Revision: 4891 $

OS: Windows 7 Version: 6.1 Architecture: x86

Java Version: 1.6.0_22 Vendor: Sun Microsystems Inc.

Detailed error trace:

TimerQueue (18):
java.lang.Object.wait(Native Method)
javax.swing.TimerQueue.run(Unknown Source)
java.lang.Thread.run(Unknown Source)

AWT-Shutdown (10):
java.lang.Object.wait(Native Method)
java.lang.Object.wait(Object.java:485)
sun.awt.AWTAutoShutdown.run(Unknown Source)
java.lang.Thread.run(Unknown Source)

Finalizer (3):
java.lang.Object.wait(Native Method)
java.lang.ref.ReferenceQueue.remove(Unknown Source)
java.lang.ref.ReferenceQueue.remove(Unknown Source)
java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)

Signal Dispatcher (4):

DestroyJavaVM (14):

Attach Listener (5):

Animation (19):
java.lang.Object.wait(Native Method)
java.lang.Object.wait(Object.java:485)
java.util.TimerThread.mainLoop(Unknown Source)
java.util.TimerThread.run(Unknown Source)

AWT-Windows (11):
sun.awt.windows.WToolkit.eventLoop(Native Method)
sun.awt.windows.WToolkit.run(Unknown Source)
java.lang.Thread.run(Unknown Source)

AWT-EventQueue-0 (13):
java.lang.Thread.dumpThreads(Native Method)
java.lang.Thread.getAllStackTraces(Unknown Source)
forge.error.ErrorViewer.printError(Unknown Source)
forge.error.ErrorViewer.showErrorAllThreads(Unknown Source)
forge.error.ErrorViewer$ShowAllThreadsAction.actionPerformed(Unknown Source)
javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
javax.swing.DefaultButtonModel.setPressed(Unknown Source)
javax.swing.AbstractButton.doClick(Unknown Source)
javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
java.awt.Component.processMouseEvent(Unknown Source)
javax.swing.JComponent.processMouseEvent(Unknown Source)
java.awt.Component.processEvent(Unknown Source)
java.awt.Container.processEvent(Unknown Source)
java.awt.Component.dispatchEventImpl(Unknown Source)
java.awt.Container.dispatchEventImpl(Unknown Source)
java.awt.Component.dispatchEvent(Unknown Source)
java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
java.awt.Container.dispatchEventImpl(Unknown Source)
java.awt.Window.dispatchEventImpl(Unknown Source)
java.awt.Component.dispatchEvent(Unknown Source)
java.awt.EventQueue.dispatchEvent(Unknown Source)
java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
java.awt.EventDispatchThread.pumpEvents(Unknown Source)
java.awt.EventDispatchThread.pumpEvents(Unknown Source)
java.awt.EventDispatchThread.run(Unknown Source)

Swing-Shell (66):
sun.misc.Unsafe.park(Native Method)
java.util.concurrent.locks.LockSupport.park(Unknown Source)
java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
java.util.concurrent.ThreadPoolExecutor.getTask(Unknown Source)
java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Unknown Source)
java.lang.Thread.run(Unknown Source)

Reference Handler (2):
java.lang.Object.wait(Native Method)
java.lang.Object.wait(Object.java:485)
java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)

Java2D Disposer (9):
java.lang.Object.wait(Native Method)
java.lang.ref.ReferenceQueue.remove(Unknown Source)
java.lang.ref.ReferenceQueue.remove(Unknown Source)
sun.java2d.Disposer.run(Unknown Source)
java.lang.Thread.run(Unknown Source)
Attachments
a.png
s1886x
 
Posts: 141
Joined: 14 Jun 2010, 01:07
Has thanked: 0 time
Been thanked: 0 time

Re: Current Known Bugs list

Postby cc-drake » 06 Aug 2011, 14:32

- Noble Vestige gives
Prevent the next 1 damage that would be dealt to Noble Vestige it this turn.
- AI can reanimate Akuta, Born of Ash without sacrificing a swamp
- Krovikan Sorcerer has (without T:,...)
Discard a non black card: Draw a card.
Last edited by cc-drake on 06 Aug 2011, 16:01, edited 1 time in total.
cc-drake
 
Posts: 570
Joined: 14 Aug 2010, 07:15
Has thanked: 29 times
Been thanked: 6 times

Re: Current Known Bugs list

Postby s1886x » 06 Aug 2011, 15:19

i used Sower of Temptation to steal my opponent's Steppe Lynx, but landfall triggers only go off when my opponent drops a land
s1886x
 
Posts: 141
Joined: 14 Jun 2010, 01:07
Has thanked: 0 time
Been thanked: 0 time

Re: Current Known Bugs list

Postby cc-drake » 06 Aug 2011, 17:21

- I attack with 4 creatures with a total power of 7. AI activates it's Shield of the Ages three times. All damage is prevented.
cc-drake
 
Posts: 570
Joined: 14 Aug 2010, 07:15
Has thanked: 29 times
Been thanked: 6 times

PreviousNext

Return to Forge

Who is online

Users browsing this forum: No registered users and 19 guests

Main Menu

User Menu

Our Partners


Who is online

In total there are 19 users online :: 0 registered, 0 hidden and 19 guests (based on users active over the past 10 minutes)
Most users ever online was 7303 on 15 Jul 2025, 20:46

Users browsing this forum: No registered users and 19 guests

Login Form