From 50057f25e6bbdac381ef5502f918eaf4f9867beb Mon Sep 17 00:00:00 2001 From: Kamron Batman Date: Wed, 5 Sep 2018 11:17:18 -0700 Subject: [PATCH] Fixes formatting in GOALS.md --- GOALS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GOALS.md b/GOALS.md index 1dd30c703..8be715954 100644 --- a/GOALS.md +++ b/GOALS.md @@ -24,7 +24,8 @@ ### Optimizations for large shards - [ ] Eject inactive players and their items after they are serialized to cold storage - [ ] Create hydration techniques for non-persisted systems (e.g. spawners, decorations, static, champions, etc) -- [ ] Simplify resource items such as Reagents, and crafting supplies by eliminating all of their individual types and using an enum and generic type. `new MandrakeRoot()` -> `new Reagent(ReagentType.MandrakeRoot)` +- [ ] Simplify resource items such as Reagents, and crafting supplies by eliminating all of their individual types and using an enum and generic type. + * `new MandrakeRoot()` -> `new Reagent(ReagentType.MandrakeRoot)` - [ ] Create object pools for high availability items such as gold and reagents * For example, `new MandrakeRoot()` -> `ObjectPool.Get(ReagentType.MandrakeRoot)`. - [ ] Replace timer system with a [wheel](https://github.com/runuo/runuo/pull/42) implementation