summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-02-08 19:22:00 +0100
committertroido <troido@protonmail.com>2020-02-08 19:22:00 +0100
commitb56add981c2f520789b97d1ee6f71dae41e8c900 (patch)
treedca7d8795c2a51f56173153c286c4dadcf8daff4 /src/main.rs
parent3ebe9e6f792a0457c6f3b37b6e9d92c83f8694e2 (diff)
no templates in the world; only pre-entities
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/main.rs b/src/main.rs
index d2cfd13..322a13b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -23,6 +23,7 @@ mod componentparameter;
mod encyclopedia;
mod template;
mod roomtemplate;
+mod player;
pub use self::pos::Pos;
use self::gameserver::GameServer;
@@ -220,18 +221,6 @@ fn default_assemblages() -> Encyclopedia {
"height": ["float", 0.1]
}]
]
- },
- "player": {
- "arguments": [["name", "string", null]],
- "components": [
- ["Visible", {
- "sprite": ["string", "player"],
- "height": ["float", 1.0]
- }],
- ["Player", {
- "name": ["arg", "name"]
- }]
- ]
}
})).unwrap()
}