X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fresources.qh;h=c228b6ec4c04b3512fa3d0190a99861d486d8c44;hp=f93db58fc324387b97b50e69da7e8f3319049a9d;hb=e0012447bfce1b551df3dc01b043655aa93dafad;hpb=25f7a4a5f137ffb344c47107636fcfc7cdfa2045 diff --git a/qcsrc/server/resources.qh b/qcsrc/server/resources.qh index f93db58fc..c228b6ec4 100644 --- a/qcsrc/server/resources.qh +++ b/qcsrc/server/resources.qh @@ -28,7 +28,8 @@ float GetResource(entity e, int res_type); /// \return Boolean for whether the ammo amount was changed bool SetResourceExplicit(entity e, int res_type, float amount); -/// \brief Sets the current amount of resource the given entity will have. +/// \brief Sets the current amount of resource the given entity will have +/// but limited to the max amount allowed for the resource type. /// \param[in,out] e Entity to adjust. /// \param[in] res_type Type of the resource (a RES_* constant). /// \param[in] amount Amount of resource to set. @@ -65,21 +66,6 @@ void TakeResource(entity receiver, int res_type, float amount); /// \return No return. void TakeResourceWithLimit(entity receiver, int res_type, float amount, float limit); -/// \brief Gives to or takes from an entity resource. -/// \param[in,out] receiver Entity to give or take resource. -/// \param[in] res_type Type of the resource (a RES_* constant). -/// \param[in] amount Amount of resource to give or take. -/// \return No return. -void GiveOrTakeResource(entity receiver, int res_type, float amount); - -/// \brief Gives to or takes from an entity resource but not more/less than a limit. -/// \param[in,out] receiver Entity to give or take resource. -/// \param[in] res_type Type of the resource (a RES_* constant). -/// \param[in] amount Amount of resource to give or take. -/// \param[in] limit Limit of resources to give or take. -/// \return No return. -void GiveOrTakeResourceWithLimit(entity receiver, int res_type, float amount, float limit); - // ===================== Legacy and/or internal API =========================== /// \brief Converts an entity field to resource type.