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:
Justin Clark-Casey (justincc)
2011-05-14 02:42:47 +01:00
parent bef1ffa7db
commit 340e3ccf16
3 changed files with 12 additions and 11 deletions

View File

@@ -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)