Closed SamVanheer closed 1 year ago
Set the maximum number of edicts to 2048 in liblist.gam to make it easier for modders to use more entities in a map.
liblist.gam
Note that this could cause crashes since the actual limit is max_edicts + 15 * (maxplayers - 1). A safety check in the game's code may prevent this.
max_edicts + 15 * (maxplayers - 1)
This has been implemented along with a fix to prevent crashes (see #191).
Set the maximum number of edicts to 2048 in
liblist.gam
to make it easier for modders to use more entities in a map.Note that this could cause crashes since the actual limit is
max_edicts + 15 * (maxplayers - 1)
. A safety check in the game's code may prevent this.