1
0
Fork 0

Fix some lint issues

This commit is contained in:
Timothy Warren 2022-01-19 14:48:10 -05:00
parent 1a95ad5650
commit 892364927a
2 changed files with 2 additions and 3 deletions

View File

@ -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);

View File

@ -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,