IE<8 Fixes: Removed trailing commas in string literals and renamed variable char to chara

This commit is contained in:
Steve Hayes
2013-07-23 23:50:17 -04:00
parent 1b1088db4f
commit 253f946dbd
5 changed files with 67 additions and 67 deletions
+5 -5
View File
@@ -285,7 +285,7 @@ Events.Room = [
},
'100wood': {
text: [
'the wanderer leaves, cart loaded with wood',
'the wanderer leaves, cart loaded with wood'
],
onLoad: function() {
if(Math.random() < 0.5) {
@@ -304,7 +304,7 @@ Events.Room = [
},
'500wood': {
text: [
'the wanderer leaves, cart loaded with wood',
'the wanderer leaves, cart loaded with wood'
],
onLoad: function() {
if(Math.random() < 0.3) {
@@ -355,7 +355,7 @@ Events.Room = [
},
'100fur': {
text: [
'the wanderer leaves, cart loaded with furs',
'the wanderer leaves, cart loaded with furs'
],
onLoad: function() {
if(Math.random() < 0.5) {
@@ -374,7 +374,7 @@ Events.Room = [
},
'500fur': {
text: [
'the wanderer leaves, cart loaded with furs',
'the wanderer leaves, cart loaded with furs'
],
onLoad: function() {
if(Math.random() < 0.3) {
@@ -590,4 +590,4 @@ Events.Room = [
}
}
}
];
];