mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
refactor: remove thisObject argument from ILandObject.Get*MaxPrimCount() instance methods since it didn't make sense to use anything other than the instance themselves.
This commit is contained in:
@@ -9915,9 +9915,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
return 0;
|
||||
|
||||
if (sim_wide != 0)
|
||||
return lo.GetSimulatorMaxPrimCount(lo);
|
||||
return lo.GetSimulatorMaxPrimCount();
|
||||
else
|
||||
return lo.GetParcelMaxPrimCount(lo);
|
||||
return lo.GetParcelMaxPrimCount();
|
||||
}
|
||||
|
||||
public LSL_List llGetParcelDetails(LSL_Vector pos, LSL_List param)
|
||||
|
||||
Reference in New Issue
Block a user