修改坐标系

This commit is contained in:
2026-01-19 15:20:15 +08:00
parent ffb9aee730
commit 9538757047

View File

@@ -6,8 +6,8 @@ from typing import Dict, Tuple
_DIRECTION_DELTAS: Dict[str, Tuple[int, int, int]] = {
"east": (1, 0, 0),
"west": (-1, 0, 0),
"north": (0, 1, 0),
"south": (0, -1, 0),
"north": (0, -1, 0),
"south": (0, 1, 0),
"up": (0, 0, 1),
"down": (0, 0, -1),
}