diff --git a/client/src/components/game.component.jsx b/client/src/components/game.component.jsx
index a7f60dcf..0b613f02 100644
--- a/client/src/components/game.component.jsx
+++ b/client/src/components/game.component.jsx
@@ -1,4 +1,5 @@
const preact = require('preact');
+const { STATS, eventClasses, getCombatText, ConstructAvatar } = require('../utils');
// const { animationDivs } = require('../animations');
const GameConstruct = require('./game.construct');
diff --git a/client/src/components/game.construct.jsx b/client/src/components/game.construct.jsx
index fa90a8c8..3ce45990 100644
--- a/client/src/components/game.construct.jsx
+++ b/client/src/components/game.construct.jsx
@@ -3,7 +3,7 @@ const preact = require('preact');
const range = require('lodash/range');
const actions = require('../actions');
-const { STATS, eventClasses, getCombatText, constructAvatar, constructHealth } = require('../utils');
+const { STATS, eventClasses, getCombatText, ConstructAvatar, constructHealth } = require('../utils');
const { animationDivs } = require('../animations');
const shapes = require('./shapes');
@@ -106,7 +106,7 @@ function GameConstruct(props) {