diff --git a/src/rlocation.rs b/src/rlocation.rs index 5a7ff74..62ac1fd 100644 --- a/src/rlocation.rs +++ b/src/rlocation.rs @@ -72,16 +72,16 @@ pub fn execute_go(player: &mut Player, coord: &str) -> String { let nombre: String; match coord { - "n" => nombre = "salida norte".to_string(), - "s" => nombre = "salida sur".to_string(), - "e" => nombre = "salida este".to_string(), - "o" => nombre = "salida oeste".to_string(), - "norte" => nombre = "salida norte".to_string(), - "sur" => nombre = "salida sur".to_string(), - "este" => nombre = "salida este".to_string(), - "oeste" => nombre = "salida oeste".to_string(), - "arriba" => nombre = "salida arriba".to_string(), - "abajo" => nombre = "salida abajo".to_string(), + "n" => nombre = "norte".to_string(), + "s" => nombre = "sur".to_string(), + "e" => nombre = "este".to_string(), + "o" => nombre = "oeste".to_string(), + "norte" => nombre = "norte".to_string(), + "sur" => nombre = "sur".to_string(), + "este" => nombre = "este".to_string(), + "oeste" => nombre = "oeste".to_string(), + "arriba" => nombre = "arriba".to_string(), + "abajo" => nombre = "abajo".to_string(), _ => nombre = "".to_string(), }