Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by mtgrares
Moderators: timmermac, Blacksmith, KrazyTheFox, Agetian, friarsol, CCGHQ Admins
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by Agetian » 29 Sep 2016, 04:40
I'm pretty sure that DBCleanup was meant there. I'd like someone to take a look at the implemented fix though (r32231) to confirm.l33t3rth4nur1111 wrote:Got this after using Toxic Deluge to (mostly) wipe the board, including an opponent's Sisters of Stone Death:
- | Open
- Game-15 > java.lang.RuntimeException: AbilityFactory : getAbility -- Sisters of Stone Death has no SVar: TrigForget
at forge.game.ability.AbilityFactory.getAbility(AbilityFactory.java:115)
at forge.game.trigger.TriggerHandler.runSingleTrigger(TriggerHandler.java:541)
at forge.game.trigger.TriggerHandler.runWaitingTrigger(TriggerHandler.java:337)
at forge.game.trigger.TriggerHandler.runWaitingTriggers(TriggerHandler.java:306)
at forge.game.GameAction.checkStateEffects(GameAction.java:872)
at forge.game.phase.PhaseHandler.startFirstTurn(PhaseHandler.java:905)
at forge.game.GameAction.startGame(GameAction.java:1462)
at forge.game.Match.startGame(Match.java:95)
at forge.match.HostedMatch$2.run(HostedMatch.java:220)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Sure enough, sisters_of_stone_death.txt hasbut no TrigForget exists. There is a DBForget; maybe that was intended? Looking at the file history, it looks like leftovers during some code cleanup.
- Code: Select all
SVar:DBForget:DB$ Pump | ForgetImprinted$ TriggeredCard
T:Mode$ ChangesZone | ValidCard$ Card.Self | Origin$ Battlefield | Destination$ Any | Execute$ TrigForget | Static$ True | Secondary$ True | TriggerDescription$ Forget all remembered cards.
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
- Agetian
- Agetian
- Programmer
- Posts: 3489
- Joined: 14 Mar 2011, 05:58
- Has thanked: 684 times
- Been thanked: 572 times
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by samotnjak23 » 29 Sep 2016, 06:07
Can you play online in forge, and if so what is the server name??
- samotnjak23
- Posts: 2
- Joined: 29 Sep 2016, 06:04
- Has thanked: 0 time
- Been thanked: 0 time
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by cc-drake » 29 Sep 2016, 15:33
I control several creatures with some +1/+1 counters, but when I cast Hazardous Conditions, all my creatures get -2/-2 

Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by lujo » 29 Sep 2016, 17:51
Merseine always asks for 1 colorless instead of the enchanted creature's converted mana cost.
---
My Shandalar deck pack folder is avaliable here:Dropbox
Leave feedback on particular decks here: Google doc
Ask for instructions, give feedback and complaints here: Thread
My Shandalar deck pack folder is avaliable here:Dropbox
Leave feedback on particular decks here: Google doc
Ask for instructions, give feedback and complaints here: Thread
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by Agetian » 29 Sep 2016, 18:41
I can confirm this but I'm not sure how to fix it. The card seems to use a really unique expression <1\EnchantedCost> to refer to the enchanted creature's mana cost, but that doesn't seem to work (was it not coded?) and I don't know what kind of alternative exists to this, if any...lujo wrote:Merseine always asks for 1 colorless instead of the enchanted creature's converted mana cost.
- Agetian
- Agetian
- Programmer
- Posts: 3489
- Joined: 14 Mar 2011, 05:58
- Has thanked: 684 times
- Been thanked: 572 times
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by friarsol » 29 Sep 2016, 19:21
No there's definitely code in CostPartMana for it. And it was coded almost 2 years ago. Something recent must have broken it.Agetian wrote:I can confirm this but I'm not sure how to fix it. The card seems to use a really unique expression <1\EnchantedCost> to refer to the enchanted creature's mana cost, but that doesn't seem to work (was it not coded?) and I don't know what kind of alternative exists to this, if any...lujo wrote:Merseine always asks for 1 colorless instead of the enchanted creature's converted mana cost.
- Agetian
- friarsol
- Global Moderator
- Posts: 7593
- Joined: 15 May 2010, 04:20
- Has thanked: 243 times
- Been thanked: 965 times
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by samotnjak23 » 29 Sep 2016, 21:44
Any word on forge multiplayer? Server name?
- samotnjak23
- Posts: 2
- Joined: 29 Sep 2016, 06:04
- Has thanked: 0 time
- Been thanked: 0 time
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by friarsol » 30 Sep 2016, 00:25
For the most part it works, but your mileage may vary. The developer that was working on it hasn't been around in a while. You need one player to host, and another player to connect to the host.samotnjak23 wrote:Any word on forge multiplayer? Server name?
- friarsol
- Global Moderator
- Posts: 7593
- Joined: 15 May 2010, 04:20
- Has thanked: 243 times
- Been thanked: 965 times
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by Agetian » 30 Sep 2016, 05:41
Hmm, not sure yet what to think here - I tried debugging it and it look like the "restriction" parameter is passed as "null" when CostPartMana is created for Merseine :/friarsol wrote:No there's definitely code in CostPartMana for it. And it was coded almost 2 years ago. Something recent must have broken it.Agetian wrote:I can confirm this but I'm not sure how to fix it. The card seems to use a really unique expression <1\EnchantedCost> to refer to the enchanted creature's mana cost, but that doesn't seem to work (was it not coded?) and I don't know what kind of alternative exists to this, if any...lujo wrote:Merseine always asks for 1 colorless instead of the enchanted creature's converted mana cost.
- Agetian
Also, isEnchantedCreatureCost() returns "false" at CostPartMana.java:125 for some reason, even though it *is* set up as "true" beforehand. Debugging this is not easy, tbh... Can someone take a look given enough time?..
- Agetian
- Agetian
- Programmer
- Posts: 3489
- Joined: 14 Mar 2011, 05:58
- Has thanked: 684 times
- Been thanked: 572 times
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by indicatie » 30 Sep 2016, 11:36
Hmmm.... Never played it before, but Temporal Aperture doesn't seem to work. Or am I doing something wrong? I click the top card of my library and the Temporal Aperture effect "card" in my command zone, but nothing seems to happen.
Don't mistake lack of talent for genius.
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by gos » 30 Sep 2016, 14:05
. Madcap Experiment doesn't deal damage if it doesn't reveal an artifact.
- gos
- Posts: 4369
- Joined: 03 Mar 2011, 15:21
- Location: Reykjavík, Iceland
- Has thanked: 231 times
- Been thanked: 232 times
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by Hanmac » 30 Sep 2016, 14:26
fixed with r32240.gos wrote:. Madcap Experiment doesn't deal damage if it doesn't reveal an artifact.
did use wrong Remember Parameter, RememberRevealed is the right one.
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by gos » 30 Sep 2016, 22:05
. Garrulous Sycophant is draining 1 life every turn when no one is the monarch.
- gos
- Posts: 4369
- Joined: 03 Mar 2011, 15:21
- Location: Reykjavík, Iceland
- Has thanked: 231 times
- Been thanked: 232 times
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by tasteful » 01 Oct 2016, 09:55
power and toughness changes from enchantment auras display on bestow creatures like Hopeful Eidolon, but don't actually work.
Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)
by Xitax » 02 Oct 2016, 01:15
Bug - Built to Smash gave trample to my non-artifact creature Voltaic Brawler
Who is online
Users browsing this forum: No registered users and 42 guests