diff options
Diffstat (limited to 'src/modules/modTeleport.c')
| -rwxr-xr-x | src/modules/modTeleport.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/modTeleport.c b/src/modules/modTeleport.c index 53b3369..3dafd77 100755 --- a/src/modules/modTeleport.c +++ b/src/modules/modTeleport.c @@ -228,12 +228,12 @@ int init(export_fce_t *p) return -1; } - if( ( fce_move_tux = export_fce->fce_getExportFce("move_tux") ) == NULL ) + if( ( fce_move_tux = export_fce->fce_getShareFce("move_tux") ) == NULL ) { return -1; } - if( ( fce_move_shot = export_fce->fce_getExportFce("move_shot") ) == NULL ) + if( ( fce_move_shot = export_fce->fce_getShareFce("move_shot") ) == NULL ) { return -1; } |