public static bool Prefix(IntVec3 clickCell, Pawn pawn, List <FloatMenuOption> opts, bool drafted)
        {
            try {
                Log.Message("About to try....");
//                Patch_FloatMenuMakerMap.AJGWO.Invoke(null, new object[] {clickCell, pawn, opts, drafted});
            }
            catch (Exception e) {
                Log.Error("well, THAT failed: " + e);
                return(true);
            }

            return(true);

            return(false);

            return(Patch_FloatMenuMakerMap.Prefix(Vector3.zero, clickCell, pawn, opts, true, drafted));
        }
 public static bool Prefix(Vector3 clickPos, Pawn pawn, List <FloatMenuOption> opts)
 {
     return(Patch_FloatMenuMakerMap.Prefix(clickPos, IntVec3.Invalid, pawn, opts, false, false));
 }