mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
RUIN the comments
This commit is contained in:
parent
5bba0a96fc
commit
4e18ffe6c2
@ -92,34 +92,24 @@ impl ActionState {
|
|||||||
// Call handler
|
// Call handler
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Charge(opt_state) => opt_state
|
Charge(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| ChargeAttackState::new(ecs_data))
|
.unwrap_or_else(|| ChargeAttackState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
},
|
},
|
||||||
Block(kind) => match kind {
|
Block(kind) => match kind {
|
||||||
BasicBlock(opt_state) => opt_state
|
BasicBlock(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| BasicBlockState::new(ecs_data))
|
.unwrap_or_else(|| BasicBlockState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
},
|
},
|
||||||
Dodge(kind) => match kind {
|
Dodge(kind) => match kind {
|
||||||
Roll(opt_state) => opt_state
|
Roll(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| RollState::new(ecs_data))
|
.unwrap_or_else(|| RollState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
},
|
},
|
||||||
Wield(opt_state) => opt_state
|
Wield(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| WieldState::new(ecs_data))
|
.unwrap_or_else(|| WieldState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Idle(opt_state) => opt_state
|
Idle(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| IdleState::new(ecs_data))
|
.unwrap_or_else(|| IdleState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
//
|
//
|
||||||
// All states should be explicitly handled
|
// All states should be explicitly handled
|
||||||
@ -181,39 +171,25 @@ impl MoveState {
|
|||||||
// Call handler
|
// Call handler
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Run(opt_state) => opt_state
|
Run(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| RunState::new(ecs_data))
|
.unwrap_or_else(|| RunState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Jump(opt_state) => opt_state
|
Jump(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| JumpState::new(ecs_data))
|
.unwrap_or_else(|| JumpState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Climb(opt_state) => opt_state
|
Climb(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| ClimbState::new(ecs_data))
|
.unwrap_or_else(|| ClimbState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Glide(opt_state) => opt_state
|
Glide(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| GlideState::new(ecs_data))
|
.unwrap_or_else(|| GlideState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Swim(opt_state) => opt_state
|
Swim(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| SwimState::new(ecs_data))
|
.unwrap_or_else(|| SwimState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Fall(opt_state) => opt_state
|
Fall(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| FallState::new(ecs_data))
|
.unwrap_or_else(|| FallState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
Sit(opt_state) => opt_state
|
Sit(opt_state) => opt_state
|
||||||
// If data hasn't been initialized, initialize a new one
|
|
||||||
.unwrap_or_else(|| SitState::new(ecs_data))
|
.unwrap_or_else(|| SitState::new(ecs_data))
|
||||||
// Call handler
|
|
||||||
.handle(ecs_data),
|
.handle(ecs_data),
|
||||||
//
|
//
|
||||||
// All states should be explicitly handled
|
// All states should be explicitly handled
|
||||||
|
Loading…
Reference in New Issue
Block a user