It is currently 24 Aug 2025, 18:57
   
Text Size

Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)

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

Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)

Postby Agetian » 29 Sep 2016, 04:40

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 has

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
but no TrigForget exists. There is a DBForget; maybe that was intended? Looking at the file history, it looks like leftovers during some code cleanup.
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.

- 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)

Postby 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)

Postby 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 :-(
cc-drake
 
Posts: 570
Joined: 14 Aug 2010, 07:15
Has thanked: 29 times
Been thanked: 6 times

Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)

Postby 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
User avatar
lujo
 
Posts: 557
Joined: 20 Nov 2013, 13:17
Has thanked: 224 times
Been thanked: 70 times

Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)

Postby Agetian » 29 Sep 2016, 18:41

lujo wrote:Merseine always asks for 1 colorless instead of the enchanted creature's converted mana cost.
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...

- 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)

Postby friarsol » 29 Sep 2016, 19:21

Agetian wrote:
lujo wrote:Merseine always asks for 1 colorless instead of the enchanted creature's converted mana cost.
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...

- Agetian
No there's definitely code in CostPartMana for it. And it was coded almost 2 years ago. Something recent must have broken it.
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)

Postby 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)

Postby friarsol » 30 Sep 2016, 00:25

samotnjak23 wrote:Any word on forge multiplayer? Server name?
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.
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)

Postby Agetian » 30 Sep 2016, 05:41

friarsol wrote:
Agetian wrote:
lujo wrote:Merseine always asks for 1 colorless instead of the enchanted creature's converted mana cost.
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...

- Agetian
No there's definitely code in CostPartMana for it. And it was coded almost 2 years ago. Something recent must have broken it.
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 :/

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)

Postby 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.
User avatar
indicatie
 
Posts: 153
Joined: 06 Feb 2009, 15:15
Has thanked: 13 times
Been thanked: 5 times

Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)

Postby 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)

Postby Hanmac » 30 Sep 2016, 14:26

gos wrote:. Madcap Experiment doesn't deal damage if it doesn't reveal an artifact.
fixed with r32240.
did use wrong Remember Parameter, RememberRevealed is the right one.
Hanmac
 
Posts: 954
Joined: 06 May 2013, 18:44
Has thanked: 229 times
Been thanked: 158 times

Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)

Postby 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)

Postby 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.
tasteful
 
Posts: 65
Joined: 04 Nov 2013, 23:53
Has thanked: 3 times
Been thanked: 3 times

Re: Forge Beta Release: 09-26-2016 ver 1.5.56 (Kaladesh)

Postby Xitax » 02 Oct 2016, 01:15

Bug - Built to Smash gave trample to my non-artifact creature Voltaic Brawler
Xitax
 
Posts: 918
Joined: 16 May 2010, 17:19
Has thanked: 183 times
Been thanked: 133 times

PreviousNext

Return to Forge

Who is online

Users browsing this forum: CptKird and 34 guests

Main Menu

User Menu

Our Partners


Who is online

In total there are 35 users online :: 1 registered, 0 hidden and 34 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: CptKird and 34 guests

Login Form