Skip to content

Commit 99264cf

Browse files
Merge pull request #2444 from jenkijo/tool-patch
Fixed issue with Perl v5.2x
2 parents 60397ae + c9abf71 commit 99264cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/itemdbconverter.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ (@)
109109
(?<eLV>[0-9]*)[^,:]*(?<hasmaxlv>:[\s\t]*(?<eLVmax>[0-9]*))?[^,]*,[\s\t]*
110110
(?<Refineable>[0-9]*)[^,]*,[\s\t]*
111111
(?<View>[0-9]*)[^,]*,[\s\t]*
112-
{(?<Script>.*)},
113-
{(?<OnEquip>.*)},
114-
{(?<OnUnequip>.*)}
112+
\{(?<Script>.*)},
113+
\{(?<OnEquip>.*)},
114+
\{(?<OnUnequip>.*)}
115115
/x ) {
116116
my %cols = map { $_ => $+{$_} } keys %+;
117117
print "/*\n" if $cols{prefix};

0 commit comments

Comments
 (0)