It is currently 18 Apr 2024, 07:50
   
Text Size

Forge Release 08/18/2017 ver 1.6.2

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

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 04 Sep 2017, 06:09

Yeah, I think it just spread uncontrollably :) Someone used it by way of analogy a few times, and then others followed suit :)

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby MaxMtg » 04 Sep 2017, 16:32

Did you guys change the server for snapshots because the latest I'm getting is from 2 days ago.
Latest Snapshot is r35339
MaxMtg
 
Posts: 102
Joined: 11 Aug 2017, 16:11
Has thanked: 50 times
Been thanked: 6 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 04 Sep 2017, 17:49

I think something is wrong with the build bot... :/ I asked about it on Discord a while ago, hopefully it'll get resolved soon.

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Indigo Dragon » 05 Sep 2017, 14:23

You can only choose up to 99 for Volcano Hellion. I want to be able to choose googolplex for Lifelink shenanigans.
Ctrl+C, Ctrl+V
User avatar
Indigo Dragon
 
Posts: 130
Joined: 11 May 2016, 10:18
Location: Australia
Has thanked: 63 times
Been thanked: 56 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 05 Sep 2017, 15:25

Indigo Dragon wrote:You can only choose up to 99 for Volcano Hellion. I want to be able to choose googolplex for Lifelink shenanigans.
Done :)

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby lindleya1 » 06 Sep 2017, 15:27

Death's Shadow no longer increases it's power if you are below 0 hitpoints. It used to work fine, but since the latest update it doesn't go above 13/13

EDIT: Never mind, just seen that the rules have changed. RIP Lich dreams
lindleya1
 
Posts: 105
Joined: 01 Jul 2015, 23:32
Has thanked: 1 time
Been thanked: 6 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby flavioj » 06 Sep 2017, 21:27

Targeting arrows are not appearing on this version.
flavioj
 
Posts: 10
Joined: 15 Sep 2014, 00:38
Has thanked: 12 times
Been thanked: 0 time

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 07 Sep 2017, 04:28

flavioj wrote:Targeting arrows are not appearing on this version.
Please try pressing T once or twice and see if they appear then. :) Maybe they accidentally got turned off.

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby kvothe » 09 Sep 2017, 23:23

Fastlands entering the battlefield at the same time with other lands are counting them and entering tapped because of them, when it shouldn't happen.

Sometimes when looping Worldgorger Dragon and Animate Dead, it behaves weirdly. It has randomly stopped sacrificing the Dragon, leaving it in play. The sacrifice trigger appears in the log, but nothing happens. Animate Dead on any creature has also sacrificed the creature immediately for no reason.
kvothe
 
Posts: 41
Joined: 26 Oct 2012, 13:45
Has thanked: 67 times
Been thanked: 2 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 10 Sep 2017, 03:11

kvothe wrote:Fastlands entering the battlefield at the same time with other lands are counting them and entering tapped because of them, when it shouldn't happen.
Can you please provide a specific situation with specific cards where this would happen?

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby RumbleBBU » 10 Sep 2017, 05:31

kvothe wrote:Sometimes when looping Worldgorger Dragon and Animate Dead, it behaves weirdly. It has randomly stopped sacrificing the Dragon, leaving it in play. The sacrifice trigger appears in the log, but nothing happens. Animate Dead on any creature has also sacrificed the creature immediately for no reason.
This is an old 'bug'. Not really 'bug' per se I guess but rather an unintended consequence of trying to fix some other issues with Animate Dead.

In short, it happened when the 'Remembered' target of the sac trigger was changed to 'DirectRemembered', quite a long time ago actually. Now it sometimes can consider the target (Worldgorger Dragon) a different target from what it was originally attached to and the sac trigger fails to find it.

The good news is you can easily revert Animate Dead back to its original functionality in your copy of Forge. Just open the card script (animate_dead.txt in res/cardsfolder/a), find this line:

Code: Select all
SVar:TrigSacrifice:DB$ Destroy | Sacrifice$ True | Defined$ DirectRemembered
And replace it with:

Code: Select all
SVar:TrigSacrifice:DB$ Destroy | Sacrifice$ True | Defined$ Remembered
I have done that in my local copy of Forge and yes, the Worldgorger Dragon combo is working perfectly. Supposedly that change may reintroduce issues that 'DirectRemembered' was intended to rectify but I haven't come any at least so far.

And in any case, I think the Worldgorger Dragon combo is famous enough to be allowed to work even if that might cause some other issues in other specific cases.
User avatar
RumbleBBU
 
Posts: 394
Joined: 18 Aug 2012, 04:24
Has thanked: 29 times
Been thanked: 66 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 10 Sep 2017, 05:56

I fixed it differently :) It was just missing cleanups (in fact, both cards were missing cleanups), which made the cards "remember" more than they should about their previous states/actions and thus the combo failed. Changing DirectRemembered to Remembered will most likely cause interaction issues, yeah (don't remember which ones exactly, but I remember that others were quite loud about them in the past :D ).

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 10 Sep 2017, 05:59

Hmm, I think I'll just leave this screenshot here... :)
its_coming.png
Probably the most requested card lately?


- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby kvothe » 10 Sep 2017, 16:55

Thank you both :)

The fast land issue: if they are entering the battlefield at the same time as other lands, for example the Dragon combo or Scapeshift, they should enter untapped if you control two or fewer lands.
A specific example would be you control 5 lands, one being Darkslick Shores, and use the dragon combo. When it enters you control no lands, so it comes untapped even though you'll have five lands in the end.
Another would be Scapshifting 4 lands away and keeping 2. If the 4 new lands you're getting are fastlands they should enter untapped.

Edit: It actually is putting the lands into play one at a time, so if the first land you played was a fastland it will come untapped but if it was the fifth it won't.
kvothe
 
Posts: 41
Joined: 26 Oct 2012, 13:45
Has thanked: 67 times
Been thanked: 2 times

Re: Forge Release 08/18/2017 ver 1.6.2

Postby Agetian » 10 Sep 2017, 17:07

Ok, I fixed it upstream :)

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

PreviousNext

Return to Forge

Who is online

Users browsing this forum: No registered users and 110 guests


Who is online

In total there are 110 users online :: 0 registered, 0 hidden and 110 guests (based on users active over the past 10 minutes)
Most users ever online was 4143 on 23 Jan 2024, 08:21

Users browsing this forum: No registered users and 110 guests

Login Form