From 97a6bf57eee0ac7227e4e40c17d3b25f5616a064 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Mon, 7 Sep 2020 14:19:47 +0200 Subject: [PATCH] fixed small error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 32e09d59..0ef4a81d 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ This project is based on ES5. Some ES2015 features are used but most of them are 5. Add a constructor. **The constructor must be called with optional parameters only!** `new MyFancyComponent({})` should always work. 6. Add any props you need in the constructor. 7. Add the component in `src/js/game/component_registry.js` -8. Add the componetn in `src/js/game/entity_components.js` +8. Add the component in `src/js/game/entity_components.js` 9. Done! You can use your component now #### Adding a new building