From eba12109e8dd65c92fb9750d323311a786df7e79 Mon Sep 17 00:00:00 2001 From: gcsoftware Date: Mon, 12 Sep 2016 16:23:23 -0700 Subject: [PATCH] Fix for missing PokeDex module Fixes Error: Cannot find module './Pokedex' on 'npm run boot' --- src/models/Player/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/Player/index.js b/src/models/Player/index.js index dc0c483..a33502d 100644 --- a/src/models/Player/index.js +++ b/src/models/Player/index.js @@ -4,7 +4,7 @@ import Bag from "./Bag"; import Info from "./Info"; import Party from "./Party"; import Avatar from "./Avatar"; -import Pokedex from "./Pokedex"; +import Pokedex from "./PokeDex"; import Contact from "./Contact"; import CandyBag from "./CandyBag"; import Tutorial from "./Tutorial"; @@ -349,4 +349,4 @@ export default class Player extends MapObject { } -inherit(Player, _packets); \ No newline at end of file +inherit(Player, _packets);