repo.or.cz
/
swg-src.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Populated Bestine Capitol Building with missing NPCs. Also spawns several other missi...
[swg-src.git]
/
tools
/
gatherViewerWarnings.pl
blob
b498ce98c9a563d430609220a38345ba01c2a92c
1
while
(<>)
2
{
3
chomp
;
4
s/\d+\s+\d+\.\d+\s+\[\d+\]\s+//
;
5
s/\s+$//
;
6
7
$file
=
$_
if
(
$opening
);
8
$opening
=
/^opening/
;
9
10
if
(
defined
(
$file
) &&
/WARNING/
)
11
{
12
print
$file
,
"
\n
"
if
(
$printed
ne
$file
);
13
$printed
=
$file
;
14
print
"
\t
"
,
$_
,
"
\n
"
15
}
16
}