From 17656c990dcf6d73f00be12186c4b70bb2c5e1ad Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 23 Nov 2020 21:54:12 -0600 Subject: [PATCH] Changed default main and secondary tool from Some(empty) to None. --- common/src/generation.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/generation.rs b/common/src/generation.rs index f040ec18ca..4e5dd28649 100644 --- a/common/src/generation.rs +++ b/common/src/generation.rs @@ -37,8 +37,8 @@ impl EntityInfo { alignment: Alignment::Wild, body: Body::Humanoid(humanoid::Body::random()), name: None, - main_tool: Some(Item::empty()), - second_tool: Some(Item::empty()), + main_tool: None, + second_tool: None, scale: 1.0, level: None, loot_drop: None,