This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "code": "fruit", | |
| "behaviors": [ | |
| { | |
| "name": "GroundStorable", | |
| "properties": { | |
| "layout": "Quadrants", | |
| "collisionBox": { | |
| "x1": 0, | |
| "y1": 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| assets/expandedfoods/itemtypes/liquid/broth.json: "satiety": 1.25, | |
| assets/expandedfoods/itemtypes/liquid/strongwine.json: "nutritionPropsWhenInMeal": { "satiety": 20, "health": 0.5, "foodcategory": "Fruit" }, | |
| assets/expandedfoods/itemtypes/liquid/clarifiedbroth.json: "satiety": 1.3, | |
| assets/expandedfoods/itemtypes/liquid/clarifiedbroth.json: "satiety": 1.3, | |
| assets/expandedfoods/itemtypes/liquid/clarifiedbroth.json: "satiety": 1.55, | |
| assets/expandedfoods/itemtypes/liquid/strongspiritportion.json: "nutritionPropsWhenInMeal": { "satiety": 20, "health": 0.5, "foodcategory": "NoNutrition" }, | |
| assets/expandedfoods/itemtypes/liquid/foodoil.json: "nutritionPropsWhenInMeal": { "satiety": 64, "health": 0.5, "foodcategory": "Vegetable" }, | |
| assets/expandedfoods/itemtypes/liquid/lard.json: "nutritionPropsWhenInMeal": { "satiety": 100, "health": 0.5, "foodcategory": "Protein" }, | |
| assets/expandedfoods/itemtypes/liquid/soymilk.json: "*-edible": { "satiety": 12, "health": 0.1, "foodcategory": "Protein" } | |
| assets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Running on 64 bit Linux (Pop!_OS 22.04 LTS) [Kernel 6.17.9.76061709] with 32010 MB RAM | |
| Game Version: v1.21.6 (Stable) | |
| 3/6/2026 12:47:54 AM: Critical error occurred in the following mod: aculinaryartillery@2.0.0-dev.10 | |
| Loaded Mods: game@1.21.6, aculinaryartillery@2.0.0-dev.10, foodshelves@2.3.3, herbarium@1.4.1-rc.1, creative@1.21.6, survival@1.21.6, expandedfoods@2.0.0-dev.7, em@3.4.1, wildcraftfruit@1.4.5 | |
| Involved Harmony IDs: com.jakecool19.efrecipes.cookingoverhaul | |
| Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value: {. Path 'satiety', line 2, position 14. | |
| at Newtonsoft.Json.JsonTextReader.ReadNumberValue(ReadType readType) | |
| at Newtonsoft.Json.JsonReader.ReadForType(JsonContract contract, Boolean hasConverter) | |
| at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateObject(Object newObject, JsonReader reader, JsonObjectContract contract, JsonProperty member, String id) | |
| at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(Js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static void SpawnSomething(CCSPlayerController player) | |
| { | |
| var playerStats = PlayerStats.GetPlayerStats(player); | |
| var locationV3 = Dndcs2.GetViewLocation(player); | |
| var location = new Vector(locationV3.X, locationV3.Y, locationV3.Z); | |
| playerStats.DragonbornInferno = location; | |
| if (location == null) | |
| return; | |
| //var location = new Vector(target.PlayerPawn.Value.AbsOrigin.X, target.PlayerPawn.Value.AbsOrigin.Y, target.PlayerPawn.Value.AbsOrigin.Z); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static Vector3 GetViewLocation(CCSPlayerController player, int distance = 8192, int cutShortDistance = 0) | |
| { | |
| var eyePosition = player.PlayerPawn.Value.AbsOrigin; | |
| Vector startOrigin = new Vector(eyePosition.X, eyePosition.Y, eyePosition.Z + player.PlayerPawn.Value.ViewOffset.Z); | |
| QAngle eyeAngles = player.PlayerPawn.Value.EyeAngles; | |
| Vector forward = new(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $post = file_get_contents('php://input'); | |
| if($post == null) | |
| { | |
| echo json_encode(array("ERROR" => "No data was passed to search for.")); | |
| } | |
| else | |
| { | |
| $url = 'http://192.168.1.XXXX:XXXXX/search'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <LoginScreen@LoadScreen>: | |
| id: login_screen | |
| name: "login_screen" | |
| MDTextField: | |
| id: password_textfield | |
| name: 'password_textfield' | |
| hint_text: "Enter Password" | |
| helper_text: "(or click on forgot forgot)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package hotsun; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import org.bukkit.Bukkit; | |
| import org.bukkit.ChatColor; | |
| import org.bukkit.Material; | |
| import org.bukkit.event.Listener; | |
| import org.bukkit.inventory.ItemStack; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package hotsun; | |
| import org.bukkit.plugin.java.JavaPlugin; | |
| public class HotSun extends JavaPlugin | |
| { | |
| @Override | |
| public void onEnable() | |
| { | |
| Timers.timer(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yearOne = 0 | |
| yearTwo = -1 | |
| def getYears(): | |
| global yearOne, yearTwo | |
| prompt = "Enter the years you would like movies for: " |
NewerOlder