File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
addons/source-python/packages/source-python Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4343).isfile ():
4444
4545 # Import the game-specific 'Entity' class
46- Entity = entities ._base = import_module (
46+ Entity = entities ._base . Entity = import_module (
4747 'entities.engines.{engine}.{game}' .format (
4848 engine = SOURCE_ENGINE ,
4949 game = GAME_NAME ,
5555).isfile ():
5656
5757 # Import the engine-specific 'Entity' class
58- Entity = entities ._base = import_module (
58+ Entity = entities ._base . Entity = import_module (
5959 'entities.engines.{engine}' .format (
6060 engine = SOURCE_ENGINE ,
6161 )
Original file line number Diff line number Diff line change 3434).isfile ():
3535
3636 # Import the game-specific 'Weapon' class
37- Weapon = weapons ._base = import_module (
37+ Weapon = weapons ._base . Weapon = import_module (
3838 'weapons.engines.{engine}.{game}' .format (
3939 engine = SOURCE_ENGINE ,
4040 game = GAME_NAME ,
4646).isfile ():
4747
4848 # Import the engine-specific 'Weapon' class
49- Weapon = weapons ._base = import_module (
49+ Weapon = weapons ._base . Weapon = import_module (
5050 'weapons.engines.{engine}' .format (
5151 engine = SOURCE_ENGINE ,
5252 )
You can’t perform that action at this time.
0 commit comments