r7429 | automacro and !include with call { sections

This place is for Closed bug reports only. NOT for asking help!

Moderators: Moderators, Developers

User avatar
lolzorbot
Noob
Noob
Posts: 18
Joined: 28 Apr 2010, 16:20
Noob?: No

r7429 | automacro and !include with call { sections

#1 Post by lolzorbot »

oke so this bug is kinda hard to explain in just the topic title

so i have 3 files like so

Code: Select all

# macro.txt
!include macro-good.txt
!include macro-evil.txt

Code: Select all

# macro-good.txt
automacro good {
	timeout 5
	call {
	log i am a good macro that does nice things
	}
}

Code: Select all

# macro-evil.txt
automacro evil {
	timeout 9999
	base = 9999 
	call {
	log EPIC FAIL !!!!!!!!1111111111111
	}
}
when running this you would expect to execute
log i am a good macro that does nice things
but instead its running
log EPIC FAIL !!!!!!!!1111111111111

so that the whole bug

if anyone has questions Just Ask !!
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: r7429 | automacro and !include with call { sections

#2 Post by EternalHarvest »

Fixed.
User avatar
lolzorbot
Noob
Noob
Posts: 18
Joined: 28 Apr 2010, 16:20
Noob?: No

Re: r7429 | automacro and !include with call { sections

#3 Post by lolzorbot »

fix confirmed

thanks