diff options
Diffstat (limited to 'src/modules')
| -rwxr-xr-x | src/modules/modMove.c | 4 | ||||
| -rwxr-xr-x | src/modules/modPipe.c | 2 | ||||
| -rwxr-xr-x | src/modules/modTeleport.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/modMove.c b/src/modules/modMove.c index 0f7c0d9..ed42886 100755 --- a/src/modules/modMove.c +++ b/src/modules/modMove.c @@ -202,8 +202,8 @@ int init(export_fce_t *p) { export_fce = p; - export_fce->fce_addToExportFce("move_tux", (void *)move_tux); - export_fce->fce_addToExportFce("move_shot", (void *)move_shot); + export_fce->fce_addToShareFce("move_tux", (void *)move_tux); + export_fce->fce_addToShareFce("move_shot", (void *)move_shot); return 0; } diff --git a/src/modules/modPipe.c b/src/modules/modPipe.c index 50db335..fb7eaf2 100755 --- a/src/modules/modPipe.c +++ b/src/modules/modPipe.c @@ -195,7 +195,7 @@ int init(export_fce_t *p) 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; } 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; } |