py2hackCraft2 1.0.10__tar.gz → 1.0.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/PKG-INFO +1 -1
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft/modules.py +4 -3
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft2.egg-info/PKG-INFO +1 -1
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/setup.py +2 -1
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/README.md +0 -0
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft/__init__.py +0 -0
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft/material.py +0 -0
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft2.egg-info/SOURCES.txt +0 -0
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft2.egg-info/dependency_links.txt +0 -0
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft2.egg-info/requires.txt +0 -0
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/py2hackCraft2.egg-info/top_level.txt +0 -0
- {py2hackCraft2-1.0.10 → py2hackCraft2-1.0.12}/setup.cfg +0 -0
|
@@ -168,11 +168,12 @@ class Location:
|
|
|
168
168
|
@dataclass
|
|
169
169
|
class InteractEvent:
|
|
170
170
|
action: str
|
|
171
|
-
|
|
171
|
+
player: str
|
|
172
|
+
player_uuid: str
|
|
173
|
+
event: str
|
|
172
174
|
name: str
|
|
173
|
-
|
|
175
|
+
type: str
|
|
174
176
|
data: int = 0
|
|
175
|
-
uuid: str = None
|
|
176
177
|
world: str = "world"
|
|
177
178
|
x: int = 0
|
|
178
179
|
y: int = 0
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="py2hackCraft2",
|
|
5
|
-
version="1.0.
|
|
5
|
+
version="1.0.12",
|
|
6
6
|
packages=find_packages(),
|
|
7
7
|
install_requires=[
|
|
8
8
|
"websocket-client" # websocketライブラリの追加
|
|
@@ -12,6 +12,7 @@ setup(
|
|
|
12
12
|
author="Masafumi Terazono",
|
|
13
13
|
author_email="masafumi_t@0x48lab.com",
|
|
14
14
|
description="These are APIs that connect to the hackCraft2 server from Python to manipulate pets.",
|
|
15
|
+
readme = "README.md",
|
|
15
16
|
license="MIT",
|
|
16
17
|
keywords="hackCraft2",
|
|
17
18
|
url="https://pypi.org/project/py2hackCraft2/", # プロジェクトホームページのURL
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|