Skip to content

Commit 63b3bfe

Browse files
committed
Merge branch 'master' of https://github.com/photonstorm/phaser
2 parents 3af73b6 + 5031843 commit 63b3bfe

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/gameobjects/GameObject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ var GameObject = new Class({
296296
// TODO Keep a reference to the manager in Body, so body can remove itself, not via System
297297
if (this.body)
298298
{
299-
sys.physicsManager.remove(this);
299+
// sys.physicsManager.remove(this);
300300

301301
this.body = undefined;
302302
}

src/loader/MergeXHRSettings.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
var Extend = require('../utils/object/Extend');
12
var XHRSettings = require('./XHRSettings');
23

34
// Takes two XHR Objects and creates a new object
@@ -7,7 +8,7 @@ var XHRSettings = require('./XHRSettings');
78

89
var MergeXHRSettings = function (global, local)
910
{
10-
var output = (global === undefined) ? XHRSettings() : Object.assign(global);
11+
var output = (global === undefined) ? XHRSettings() : Extend(global);
1112

1213
if (local)
1314
{

0 commit comments

Comments
 (0)