Skip to content

Commit 092d05f

Browse files
committed
Update to latest spec
1 parent 4fbd19b commit 092d05f

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

pytest.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@ def random_string():
1616

1717
def random_player_config():
1818
return PlayerConfiguration(
19-
variety=Psyonix(PsyonixSkill.AllStar),
20-
name=random_string(),
21-
root_dir=random_string(),
22-
run_command=random_string(),
23-
loadout=PlayerLoadout(
24-
loadout_paint=LoadoutPaint(),
25-
primary_color_lookup=Color(),
26-
secondary_color_lookup=Color(),
19+
variety=CustomBot(
20+
name=random_string(),
21+
root_dir=random_string(),
22+
run_command=random_string(),
23+
loadout=PlayerLoadout(
24+
loadout_paint=LoadoutPaint(),
25+
primary_color_lookup=Color(),
26+
secondary_color_lookup=Color(),
27+
),
28+
agent_id=random_string(),
2729
),
2830
)
2931

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ pynamedmodule! {
210210
CorePacket,
211211
CustomBot,
212212
CylinderShape,
213+
DebugRendering,
213214
DemolishMutator,
214215
DemolishScoreMutator,
215216
DesiredBallState,
@@ -248,7 +249,6 @@ pynamedmodule! {
248249
MutatorSettings,
249250
NormalGoalScoreMutator,
250251
OvertimeMutator,
251-
PartyMember,
252252
Physics,
253253
PlayerClass,
254254
PlayerConfiguration,
@@ -258,7 +258,7 @@ pynamedmodule! {
258258
PolyLine3D,
259259
PossessionScoreMutator,
260260
PredictionSlice,
261-
Psyonix,
261+
PsyonixBot,
262262
PsyonixSkill,
263263
Rect2D,
264264
Rect3D,
@@ -268,6 +268,7 @@ pynamedmodule! {
268268
RenderGroup,
269269
RenderMessage,
270270
RenderType,
271+
RenderingStatus,
271272
RespawnTimeMutator,
272273
Rotator,
273274
RotatorPartial,

0 commit comments

Comments
 (0)