MarkoSulamagi / Screeps-typescript-skeleton

Screeps typescript project skeleton
https://screeps.com
6 stars 5 forks source link

Error in GameManager #10

Closed MyrddinE closed 8 years ago

MyrddinE commented 8 years ago

GameManager includes an error in the example code... you can't refer to Game.creeps.Argos. Shouldn't that be Game.creeps['Argos'] in TypeScript?

MarkoSulamagi commented 8 years ago

It was a legacy call. It was possible some time ago, but now you can't do it. I made it so that it would be easier to port existing JS Screep's project to TS. I changed it now and pushed new code to repo.

Thank you for your help.