Commit 5d704143b43e5c591600d206dab1e9b7dd879353
1 parent
d02247d5
add missing slash in class dump path
Showing
1 changed file
with
1 additions
and
1 deletions
java/common/com/mumfrey/liteloader/transformers/event/EventTransformer.java
... | ... | @@ -262,7 +262,7 @@ public final class EventTransformer extends ClassTransformer |
262 | 262 | { |
263 | 263 | try |
264 | 264 | { |
265 | - FileUtils.writeByteArrayToFile(new File(".classes" + Obf.lookupMCPName(transformedName).replace('.', '/') + ".class"), bytes); | |
265 | + FileUtils.writeByteArrayToFile(new File(".classes/" + Obf.lookupMCPName(transformedName).replace('.', '/') + ".class"), bytes); | |
266 | 266 | } |
267 | 267 | catch (IOException ex) {} |
268 | 268 | } | ... | ... |