mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
Simul-efun implementations of deprecated efuns from the mud Seifenblase by Myonara@UNItopia and Gnomi@UNItopia.
12 lines
283 B
C
12 lines
283 B
C
/* This sefun is to provide a replacement for the efun member_array().
|
|
* Feel free to add it to your mudlibs, if you have much code relying on that.
|
|
*/
|
|
|
|
#if ! __EFUN_DEFINED__(member_array)
|
|
|
|
int member_array(mixed item, string|mixed* arr)
|
|
{
|
|
return member(arr, item);
|
|
}
|
|
|
|
#endif
|