Format fixes.

This commit is contained in:
Sam 2021-09-23 14:43:31 -04:00 committed by juliancoffee
parent 80ccda6583
commit 56b17e7141
10 changed files with 13 additions and 15 deletions

View File

@ -1,9 +1,9 @@
EntityConfig (
name: Name("Pirate"),
body: Exact(Humanoid(Body(
species: Human,
body_type: Female,
hair_style: 2,
species: Human,
body_type: Female,
hair_style: 2,
beard: 0,
eyes: 0,
accessory: 0,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: Exact(Object(TrainingDummy)),
alignment: Alignment(Passive),
loot: None,
loot: Nothing,
hands: Uninit,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: RandomWith("goat"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.quad_small.wool")
loot: LootTable("common.loot_tables.creature.quad_small.wool"),
hands: Uninit,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: RandomWith("holladon"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.quad_small.generic")
loot: LootTable("common.loot_tables.creature.quad_small.generic"),
hands: Uninit,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: RandomWith("llama"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.quad_medium.wool")
loot: LootTable("common.loot_tables.creature.quad_medium.wool"),
hands: Uninit,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: RandomWith("mouflon"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.quad_medium.wool")
loot: LootTable("common.loot_tables.creature.quad_medium.wool"),
hands: Uninit,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: RandomWith("pig"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.quad_small.generic")
loot: LootTable("common.loot_tables.creature.quad_small.generic"),
hands: Uninit,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: Exact(QuadrupedSmall(Body(species: Hare, body_type: Male))),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.quad_small.fur")
loot: LootTable("common.loot_tables.creature.quad_small.fur"),
hands: Uninit,

View File

@ -3,7 +3,7 @@ EntityConfig (
body: RandomWith("sheep"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.quad_small.wool")
loot: LootTable("common.loot_tables.creature.quad_small.wool"),
hands: Uninit,

View File

@ -2,16 +2,14 @@ use crate::{
client::Client,
comp::{
agent::{Agent, AgentEvent, Sound, SoundKind},
biped_large, bird_large, quadruped_low, quadruped_medium, quadruped_small,
skills::SkillGroupKind,
theropod, BuffKind, BuffSource, PhysicsState,
BuffKind, BuffSource, PhysicsState,
},
rtsim::RtSim,
sys::terrain::SAFE_ZONE_RADIUS,
Server, SpawnPoint, StateExt,
};
use common::{
assets::AssetExt,
combat,
comp::{
self, aura, buff,
@ -21,7 +19,7 @@ use common::{
Inventory, Player, Poise, Pos, SkillSet, Stats,
},
event::{EventBus, ServerEvent},
lottery::{LootSpec, Lottery},
lottery::LootSpec,
outcome::Outcome,
resources::Time,
rtsim::RtSimEntity,