Skip to content
Snippets Groups Projects
Commit 714b3933 authored by Tim Repke's avatar Tim Repke
Browse files

fixed environment reference bug

parent 523b5dcc
No related branches found
No related tags found
No related merge requests found
...@@ -2,22 +2,22 @@ function Environment () { ...@@ -2,22 +2,22 @@ function Environment () {
// something? // something?
} }
Environment.prototype.progress = { Environment.progress = {
fs_firstApproach: false, fs_firstApproach: false,
fs_georgeScreamed: false, fs_georgeScreamed: false,
fs_filledBoard: false, fs_filledBoard: false,
killedGoat: false killedGoat: false
}; };
Environment.prototype.inventory = { Environment.inventory = {
money: false, money: false,
goatDrops: false goatDrops: false
}; };
Environment.prototype.mapEvents = { Environment.mapEvents = {
'map_landing': { 'map_landing': {
init: function(svg) { init: function(svg) {
if (this.progress.fs_filledBoard) { if (Environment.progress.fs_filledBoard) {
// TODO: remove baustelle (that doesn't exist yet) // TODO: remove baustelle (that doesn't exist yet)
} else { } else {
var ship = svg.select("#shipGroup"); var ship = svg.select("#shipGroup");
......
...@@ -5,7 +5,6 @@ function Game(config) { ...@@ -5,7 +5,6 @@ function Game(config) {
Game.instance = this; Game.instance = this;
Game.achievements = new Achievements(); Game.achievements = new Achievements();
Game.environment = new Environment();
Game.eventHandler = null; Game.eventHandler = null;
Game.char = null; Game.char = null;
Game.cam = null; Game.cam = null;
...@@ -74,7 +73,7 @@ Game.prototype.loadMap = function(map, spawn) { ...@@ -74,7 +73,7 @@ Game.prototype.loadMap = function(map, spawn) {
// ------------------------------------- // -------------------------------------
// init map specific things // init map specific things
Game.environment.mapEvents[mapId].init(svg); Environment.mapEvents[mapId].init(svg);
// init view stuff // init view stuff
Game.char = new Char(svg, {spawnid: spawn}); Game.char = new Char(svg, {spawnid: spawn});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment