Fix some lint issues
This commit is contained in:
parent
1a95ad5650
commit
892364927a
@ -120,6 +120,7 @@ pub fn move_entity(entity: Entity, moving_from: usize, moving_to: usize) {
|
||||
lock.blocked[moving_to].1 = to_blocked;
|
||||
}
|
||||
|
||||
#[allow(dead_code)]
|
||||
pub fn remove_entity(entity: Entity, idx: usize) {
|
||||
let mut lock = SPATIAL_MAP.lock().unwrap();
|
||||
lock.tile_content[idx].retain(|(e, _)| *e != entity);
|
||||
|
@ -89,9 +89,7 @@ impl<'a> System<'a> for TriggerSystem {
|
||||
|
||||
// If it's a teleporter, then do that
|
||||
if let Some(teleport) = teleporters.get(entity_id) {
|
||||
if (teleport.player_only && entity == *player_entity)
|
||||
|| !teleport.player_only
|
||||
{
|
||||
if !teleport.player_only || entity == *player_entity {
|
||||
apply_teleport
|
||||
.insert(
|
||||
entity,
|
||||
|
Loading…
Reference in New Issue
Block a user