Skip to content

Commit a103b0e

Browse files
committed
Fixed FB Plugin paths to avoid build errors if plugin is enabled.
1 parent a6e650f commit a103b0e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

plugins/fbinstant/src/Leaderboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
55
*/
66

7-
var Class = require('../utils/Class');
7+
var Class = require('../../../src/utils/Class');
88
var EventEmitter = require('eventemitter3');
99
var LeaderboardScore = require('./LeaderboardScore');
1010

plugins/fbinstant/src/Product.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
55
*/
66

7-
var GetFastValue = require('../utils/object/GetFastValue');
7+
var GetFastValue = require('../../../src/utils/object/GetFastValue');
88

99
/**
1010
* @classdesc

plugins/fbinstant/src/Purchase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
55
*/
66

7-
var GetFastValue = require('../utils/object/GetFastValue');
7+
var GetFastValue = require('../../../src/utils/object/GetFastValue');
88

99
var Purchase = function (data)
1010
{

src/boot/Game.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if (typeof EXPERIMENTAL)
3434

3535
if (typeof PLUGIN_FBINSTANT)
3636
{
37-
var FacebookInstantGamesPlugin = require('../fbinstant/FacebookInstantGamesPlugin');
37+
var FacebookInstantGamesPlugin = require('../../plugins/fbinstant/src/FacebookInstantGamesPlugin');
3838
}
3939

4040
/**

0 commit comments

Comments
 (0)