mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
'suffix' is no longer a safe global variable name in scripts;
Drop down list for word lists stay open after clicking on a prefix choice. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@663 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -18,13 +18,13 @@ init script:
|
||||
else "g"
|
||||
) else input
|
||||
}
|
||||
suffix := [card: "card.jpg", textbox: "textbox.png", typeline: "typeline.png"]
|
||||
template := { green_template() + suffix[type] }
|
||||
template_suffix := [card: "card.jpg", textbox: "textbox.png", typeline: "typeline.png"]
|
||||
template := { green_template() + template_suffix[type] }
|
||||
land_template := {
|
||||
(if input == "a" then (
|
||||
if styling.land_style == "grey" then "e"
|
||||
else "c"
|
||||
) else green_template()) + "l" + suffix[type] }
|
||||
) else green_template()) + "l" + template_suffix[type] }
|
||||
|
||||
# Use the normal tap symbol
|
||||
mana_t := {
|
||||
|
||||
Reference in New Issue
Block a user