Skip to content

Commit 9e27f0a

Browse files
committed
Get the physics engine to work.
Signed-off-by: Mike Stitt <[email protected]>
1 parent 6cf2977 commit 9e27f0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

subprojects/robotpy-wpilib/wpilib/iterativerobotpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def driverStationConnected(self) -> None:
124124
"""
125125
pass
126126

127-
def simulationInit(self) -> None:
127+
def _simulationInit(self) -> None:
128128
"""
129129
Robot-wide simulation initialization code should go here.
130130

subprojects/robotpy-wpilib/wpilib/timedrobotpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def startCompetition(self) -> None:
153153
self.robotInit()
154154

155155
if self.isSimulation():
156-
self.simulationInit()
156+
self._simulationInit()
157157

158158
# Tell the DS that the robot is ready to be enabled
159159
print("********** Robot program startup complete **********")

0 commit comments

Comments
 (0)